.elementor-6966 .elementor-element.elementor-element-6e37c33{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-622974b *//* ============================================================
   IP10 HOME — CSS SCOPEADO ANTI-CONFLICTO TEMA WORDPRESS
   Todos los .elementor-6966 .elementor-element.elementor-element-622974bes van bajo .ip10-home para evitar
   que el tema (Elementor, Astra, Hello, OceanWP, etc.)
   sobreescriba los estilos.
   
   USO EN WORDPRESS:
   1. Añade la clase "ip10-home" al wrapper de la página
      (en Elementor: sección raíz > Advanced > CSS Classes)
   2. O añade <div class="ip10-home"> alrededor del contenido
   3. Pega este CSS en Apariencia > Personalizar > CSS adicional
      o en Elementor > Custom CSS de la página
============================================================ */

/* ============================================================
   VARIABLES — en :root para garantizar cascada en Elementor
============================================================ */
:root {
  --ip10-navy:      #0D1F3C;
  --ip10-navy-mid:  #152E57;
  --ip10-orange:    #FF8C00;
  --ip10-orange-lt: #FFA733;
  --ip10-blue:      #0090B3;
  --ip10-gray-bg:   #F4F5F7;
  --ip10-gray-mid:  #E8E9EC;
  --ip10-gray-txt:  #6B7280;
  --ip10-white:     #FFFFFF;
  --ip10-radius:    6px;
  --ip10-shadow-sm: 0 2px 12px rgba(13,31,60,.08);
  --ip10-shadow-md: 0 8px 32px rgba(13,31,60,.12);
  --ip10-transition: .3s cubic-bezier(.4,0,.2,1);
  --ip10-font-main:  'Raleway', sans-serif;
  --ip10-font-serif: 'Lora', serif;
  --ip10-max-w:      1200px;
}

/* Alias internos para no reescribir todo el CSS */
.ip10-home {
  --navy:      var(--ip10-navy);
  --navy-mid:  var(--ip10-navy-mid);
  --orange:    var(--ip10-orange);
  --orange-lt: var(--ip10-orange-lt);
  --blue:      var(--ip10-blue);
  --gray-bg:   var(--ip10-gray-bg);
  --gray-mid:  var(--ip10-gray-mid);
  --gray-txt:  var(--ip10-gray-txt);
  --white:     var(--ip10-white);
  --radius:    var(--ip10-radius);
  --shadow-sm: var(--ip10-shadow-sm);
  --shadow-md: var(--ip10-shadow-md);
  --transition: var(--ip10-transition);
  --font-main:  var(--ip10-font-main);
  --font-serif: var(--ip10-font-serif);
  --max-w:      var(--ip10-max-w);
}

/* ============================================================
   RESET SCOPEADO — neutraliza herencia del tema
============================================================ */
.ip10-home,
.ip10-home * {
  box-sizing: border-box;
}

.ip10-home img {
  max-width: 100%;
  display: block;
  height: auto;
}

.ip10-home ul,
.ip10-home ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ──────────────────────────────────────────
   RESET CRÍTICO: enlaces
   Los temas sobreescriben color y text-decoration
   de <a> de forma global. Reseteamos dentro del scope.
────────────────────────────────────────── */
.ip10-home a {
  text-decoration: none !important;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

.ip10-home a:hover,
.ip10-home a:focus,
.ip10-home a:visited {
  text-decoration: none !important;
  outline: none;
}

/* ──────────────────────────────────────────
   RESET CRÍTICO: botones
   Los temas añaden border, padding, background
   a todos los <a class="btn"> o <button>
────────────────────────────────────────── */
.ip10-home .btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: var(--font-main) !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  padding: 14px 28px !important;
  border-radius: var(--radius) !important;
  cursor: pointer !important;
  border: 2px solid transparent !important;
  transition: var(--transition) !important;
  white-space: nowrap !important;
  line-height: 1.2 !important;
  text-align: center !important;
  letter-spacing: normal !important;
  text-transform: none !important;
  box-shadow: none !important;
}

/* Botón naranja primario */
.ip10-home .btn-primary {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
}
.ip10-home .btn-primary:hover {
  background: var(--orange-lt) !important;
  color: var(--white) !important;
  border-color: var(--orange-lt) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(255,140,0,.35) !important;
}

/* Botón outline oscuro */
.ip10-home .btn-outline {
  background: transparent !important;
  color: var(--navy) !important;
  border-color: var(--navy) !important;
}
.ip10-home .btn-outline:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
  transform: translateY(-2px) !important;
}

/* ──────────────────────────────────────────
   RESET CRÍTICO: btn-outline-white
   Es el que más falla — el tema pone color oscuro
   en todos los <a> y el texto desaparece sobre
   fondos oscuros del hero y la sección GEO
────────────────────────────────────────── */
.ip10-home .btn-outline-white {
  background: transparent !important;
  color: #FFFFFF !important;
  border: 2px solid rgba(255,255,255,.6) !important;
}
.ip10-home .btn-outline-white:hover,
.ip10-home .btn-outline-white:focus,
.ip10-home .btn-outline-white:visited {
  background: rgba(255,255,255,.12) !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}

/* Botón CTA blanco (sección naranja) */
.ip10-home .btn-cta-white {
  background: var(--white) !important;
  color: var(--orange) !important;
  font-weight: 800 !important;
  padding: 16px 36px !important;
  border-radius: var(--radius) !important;
  font-size: 1rem !important;
  display: inline-block !important;
  transition: var(--transition) !important;
  border: none !important;
  text-decoration: none !important;
  line-height: 1.4 !important;
}
.ip10-home .btn-cta-white:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.25) !important;
}

/* ============================================================
   LAYOUT BASE
============================================================ */
.ip10-home .container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.ip10-home .section {
  padding: 100px 0;
}

.ip10-home .section-alt {
  background: var(--gray-bg);
}

.ip10-home .section-header {
  margin-bottom: 56px;
}

.ip10-home .section-header.centered {
  text-align: center;
}

.ip10-home .section-header.centered .section-sub {
  margin: 14px auto 0;
}

/* ============================================================
   HELPERS — tipografía scopeada
============================================================ */
.ip10-home .tag-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,140,0,.1);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-family: var(--font-main);
}

.ip10-home .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  font-family: var(--font-main);
  margin: 0;
}

.ip10-home .section-title span {
  color: var(--orange);
}

.ip10-home .section-sub {
  font-size: 1.05rem;
  color: var(--gray-txt);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 600px;
  font-family: var(--font-main);
}

/* ============================================================
   HERO
============================================================ */
.ip10-home .hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding: 120px 0 80px;
}

.ip10-home .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.ip10-home .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ip10-home .hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,144,179,.4) 0%, transparent 70%);
  top: -100px; right: -80px;
}
.ip10-home .hero-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,140,0,.25) 0%, transparent 70%);
  bottom: 0; left: 10%;
}

.ip10-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ip10-home .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8) !important;
  margin-bottom: 24px;
  font-family: var(--font-main);
}

.ip10-home .hero-badge .dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  animation: ip10-pulse-green 2s infinite;
  flex-shrink: 0;
}

@keyframes ip10-pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.ip10-home .hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  color: #FFFFFF !important;
  margin-bottom: 22px !important;
  font-family: var(--font-main) !important;
}

.ip10-home .hero h1 em {
  font-style: normal;
  color: var(--orange) !important;
}

.ip10-home .hero h1 .underline-anim {
  position: relative;
  display: inline-block;
  color: #FFFFFF !important;
}

.ip10-home .hero h1 .underline-anim::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: ip10-line-in .8s .6s forwards;
}

@keyframes ip10-line-in {
  to { transform: scaleX(1); }
}

.ip10-home .hero-desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72) !important;
  margin-bottom: 36px;
  max-width: 520px;
  font-family: var(--font-main);
}

.ip10-home .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ip10-home .hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.ip10-home .hero-stat-value {
  font-size: 1.9rem;
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1;
  font-family: var(--font-main);
}

.ip10-home .hero-stat-value span {
  color: var(--orange) !important;
}

.ip10-home .hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55) !important;
  margin-top: 4px;
  font-weight: 500;
}

/* Hero visual */
.ip10-home .hero-visual {
  position: relative;
  height: 460px;
}

.ip10-home .hero-card {
  position: absolute;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 22px 26px;
  transition: var(--transition);
}

.ip10-home .hero-card:hover { transform: translateY(-4px); }

.ip10-home .hero-card-main  { width: 320px; top: 40px;  left: 20px;  z-index: 3; }
.ip10-home .hero-card-geo   { width: 260px; top: 30px;  left: 300px; z-index: 1; }
.ip10-home .hero-card-secondary { width: 270px; top: 220px; left: 260px; z-index: 2; }

.ip10-home .hc-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.ip10-home .hc-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 6px;
}

.ip10-home .hc-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.6) !important;
  line-height: 1.5;
}

.ip10-home .geo-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,144,179,.2);
  border: 1px solid rgba(0,144,179,.4);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: .75rem;
  color: #67D8F0 !important;
  font-weight: 600;
  margin-bottom: 10px;
}

.ip10-home .bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ip10-home .bar-label {
  font-size: .72rem;
  color: rgba(255,255,255,.6);
  width: 55px;
}

.ip10-home .bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,.1);
  border-radius: 3px;
  overflow: hidden;
}

.ip10-home .bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  animation: ip10-bar-grow 1.5s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
}

.ip10-home .bar-fill[data-w="90%"] { --bar-w: 90%; animation-delay: .3s; }
.ip10-home .bar-fill[data-w="75%"] { --bar-w: 75%; animation-delay: .5s; }
.ip10-home .bar-fill[data-w="60%"] { --bar-w: 60%; animation-delay: .7s; }

@keyframes ip10-bar-grow {
  to { transform: scaleX(1); width: var(--bar-w, 80%); }
}

.ip10-home .hero-bubble {
  position: absolute;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  font-size: .78rem;
  font-weight: 700;
  color: var(--navy) !important;
  z-index: 10;
  animation: ip10-float-bubble 3s ease-in-out infinite;
}

.ip10-home .hero-bubble-1 { bottom: 80px;  left: 0;    animation-delay: 0s; }
.ip10-home .hero-bubble-2 { bottom: 160px; right: -10px; animation-delay: 1.2s; }

@keyframes ip10-float-bubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================================
   TRUST BAR
============================================================ */
.ip10-home .trust-bar {
  background: var(--gray-bg);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 20px 0;
}

.ip10-home .trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.ip10-home .trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy) !important;
  opacity: .75;
}

.ip10-home .trust-item svg { flex-shrink: 0; }

/* ============================================================
   SERVICES
============================================================ */
/* ============================================================
   SERVICES — 4 tarjetas en grid de 4 columnas
============================================================ */
.ip10-home .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ip10-home .service-card {
  background: #FFFFFF;
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ip10-home .service-card--geo {
  border-color: rgba(0,144,179,.3);
  background: linear-gradient(135deg, #fff 60%, rgba(0,144,179,.04) 100%);
}

.ip10-home .service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.ip10-home .service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ip10-home .service-card:hover::before { transform: scaleX(1); }

.ip10-home .service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.ip10-home .icon-orange { background: rgba(255,140,0,.1); }
.ip10-home .icon-blue   { background: rgba(0,144,179,.1); }
.ip10-home .icon-navy   { background: rgba(13,31,60,.08); }
.ip10-home .icon-green  { background: rgba(34,197,94,.1); }
.ip10-home .icon-geo    { background: linear-gradient(135deg, rgba(0,144,179,.15), rgba(255,140,0,.1)); }

.ip10-home .service-title {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  margin-bottom: 10px !important;
  color: var(--navy) !important;
  font-family: var(--font-main) !important;
}

.ip10-home .service-desc {
  font-size: .88rem;
  color: var(--gray-txt) !important;
  line-height: 1.65;
  margin-bottom: 20px;
}

.ip10-home .service-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.ip10-home .service-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  color: var(--navy) !important;
  font-weight: 500;
}

.ip10-home .service-item::before {
  content: '→';
  color: var(--orange) !important;
  font-weight: 700;
  font-size: .75rem;
}

.ip10-home .service-link {
  font-size: .85rem !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.ip10-home .service-link:hover {
  color: var(--orange) !important;
  gap: 9px !important;
}

/* ============================================================
   NUMBERS
============================================================ */
.ip10-home .numbers-section {
  background: var(--navy);
  padding: 80px 0;
}

.ip10-home .numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
}

.ip10-home .number-block {
  padding: 44px 32px;
  text-align: center;
  background: var(--navy);
  transition: var(--transition);
}

.ip10-home .number-block:hover { background: var(--navy-mid); }

.ip10-home .number-val {
  font-size: 3rem;
  font-weight: 900;
  color: #FFFFFF !important;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-main);
}

.ip10-home .number-val span { color: var(--orange) !important; }

.ip10-home .number-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55) !important;
  font-weight: 500;
}

/* ============================================================
   PROCESS
============================================================ */
.ip10-home .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ip10-home .process-steps {
  display: flex;
  flex-direction: column;
}

.ip10-home .process-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-mid);
  cursor: pointer;
  transition: var(--transition);
}

.ip10-home .process-step:last-child { border-bottom: none; }

.ip10-home .process-step:hover .step-content { padding-left: 6px; }

.ip10-home .step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 2px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--gray-txt) !important;
  transition: var(--transition);
  margin-top: 2px;
}

.ip10-home .process-step:hover .step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF !important;
}

.ip10-home .step-content { transition: var(--transition); }

.ip10-home .step-title {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 5px !important;
  font-family: var(--font-main) !important;
}

.ip10-home .step-desc {
  font-size: .875rem;
  color: var(--gray-txt) !important;
  line-height: 1.6;
}

.ip10-home .process-visual {
  background: var(--gray-bg);
  border-radius: 20px;
  padding: 40px;
}

.ip10-home .audit-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.ip10-home .audit-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ip10-home .audit-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy) !important;
}

.ip10-home .audit-score {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--orange) !important;
}

.ip10-home .audit-rows { display: flex; flex-direction: column; gap: 10px; }

.ip10-home .audit-row { display: flex; align-items: center; gap: 10px; }

.ip10-home .audit-row-label {
  font-size: .75rem;
  color: var(--gray-txt) !important;
  width: 110px;
  flex-shrink: 0;
}

.ip10-home .audit-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-mid);
  border-radius: 3px;
  overflow: hidden;
}

.ip10-home .audit-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.ip10-home .audit-pct {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy) !important;
  width: 32px;
  text-align: right;
}

.ip10-home .ranking-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.ip10-home .ranking-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy) !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ip10-home .rank-rows { display: flex; flex-direction: column; gap: 8px; }

.ip10-home .rank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--gray-bg);
  border-radius: 6px;
  font-size: .8rem;
}

.ip10-home .rank-pos { font-weight: 800; color: var(--orange) !important; font-size: .9rem; }
.ip10-home .rank-kw  { color: var(--navy) !important; font-weight: 500; }
.ip10-home .rank-vol { color: var(--gray-txt) !important; font-size: .75rem; }

/* ============================================================
   GEO SECTION
============================================================ */
.ip10-home .geo-section {
  background: linear-gradient(135deg, #0D1F3C 0%, #0A2540 50%, #0D2B45 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.ip10-home .geo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(0,144,179,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,140,0,.1)  0%, transparent 50%);
  pointer-events: none;
}

.ip10-home .geo-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ip10-home .geo-content .tag-label {
  background: rgba(0,144,179,.2);
  color: #67D8F0 !important;
}

.ip10-home .geo-content .section-title { color: #FFFFFF !important; }
.ip10-home .geo-content .section-title span { color: var(--orange) !important; }
.ip10-home .geo-content .section-sub { color: rgba(255,255,255,.65) !important; }

.ip10-home .geo-features { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }

.ip10-home .geo-feature { display: flex; gap: 16px; align-items: flex-start; }

.ip10-home .geo-feat-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,140,0,.15);
  border: 1px solid rgba(255,140,0,.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.ip10-home .geo-feat-text .title {
  font-size: .95rem;
  font-weight: 700;
  color: #FFFFFF !important;
  margin-bottom: 3px;
}

.ip10-home .geo-feat-text .desc {
  font-size: .83rem;
  color: rgba(255,255,255,.55) !important;
  line-height: 1.55;
}

.ip10-home .geo-cta-row {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* GEO visual */
.ip10-home .geo-visual { display: flex; flex-direction: column; gap: 16px; }

.ip10-home .ai-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px 12px 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.7) !important;
  font-weight: 600;
}

.ip10-home .ai-dot { width: 8px; height: 8px; border-radius: 50%; }
.ip10-home .ai-dot.red    { background: #FF5F57; }
.ip10-home .ai-dot.yellow { background: #FFBD2E; }
.ip10-home .ai-dot.green  { background: #28C840; }

.ip10-home .ai-logo {
  margin-left: auto;
  font-size: .75rem;
  color: rgba(255,255,255,.4) !important;
}

.ip10-home .ai-chat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ip10-home .ai-query {
  background: rgba(0,144,179,.15);
  border: 1px solid rgba(0,144,179,.25);
  border-radius: 10px 10px 2px 10px;
  padding: 12px 16px;
  font-size: .83rem;
  color: rgba(255,255,255,.85) !important;
  align-self: flex-end;
  max-width: 82%;
  line-height: 1.5;
}

.ip10-home .ai-answer {
  background: rgba(255,255,255,.06);
  border-radius: 2px 10px 10px 10px;
  padding: 14px 16px;
  font-size: .82rem;
  color: rgba(255,255,255,.75) !important;
  line-height: 1.65;
  max-width: 90%;
}

.ip10-home .ai-answer strong { color: var(--orange) !important; font-weight: 700; }

.ip10-home .ai-source-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }

.ip10-home .ai-source {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: .72rem;
  color: rgba(255,255,255,.6) !important;
  font-weight: 600;
}

.ip10-home .ai-source .dot-s {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.ip10-home .geo-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ip10-home .geo-platform {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  transition: var(--transition);
}

.ip10-home .geo-platform:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.ip10-home .geo-platform-icon { font-size: 1.4rem; margin-bottom: 6px; }

.ip10-home .geo-platform-name {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(255,255,255,.7) !important;
}

.ip10-home .geo-visibility {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 14px 18px;
}

.ip10-home .geo-vis-label { font-size: .8rem; color: rgba(255,255,255,.55) !important; font-weight: 500; }

.ip10-home .geo-vis-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: #22C55E !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   PORTFOLIO
============================================================ */
.ip10-home .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ip10-home .portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  background: #FFFFFF;
  cursor: pointer;
}

.ip10-home .portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.ip10-home .portfolio-img {
  height: 210px;
  background: #111827;
  display: block;
  overflow: hidden;
  position: relative;
}

.ip10-home .portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transition: transform .4s ease;
  max-width: none;
  display: block;
}

.ip10-home .portfolio-card:hover .portfolio-img img { transform: scale(1.07); }

.ip10-home .portfolio-body { padding: 20px 22px; }

.ip10-home .portfolio-tag {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue) !important;
  margin-bottom: 8px;
}

.ip10-home .portfolio-name {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ip10-home .portfolio-desc {
  font-size: .82rem;
  color: var(--gray-txt) !important;
  line-height: 1.55;
}

.ip10-home .portfolio-footer {
  display: flex;
  justify-content: flex-end;
  padding: 14px 22px;
  border-top: 1px solid var(--gray-mid);
}

.ip10-home .portfolio-link {
  font-size: .82rem !important;
  font-weight: 700 !important;
  color: var(--blue) !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  transition: var(--transition) !important;
  text-decoration: none !important;
}

.ip10-home .portfolio-link:hover {
  color: var(--orange) !important;
}

.ip10-home .portfolio-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.ip10-home .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ip10-home .testimonial-card {
  background: #FFFFFF;
  border: 1px solid var(--gray-mid);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
}

.ip10-home .testimonial-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.ip10-home .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.ip10-home .star { color: #FBBF24 !important; font-size: 1rem; }

.ip10-home .testimonial-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--navy) !important;
  font-style: italic;
  margin-bottom: 20px;
  font-family: var(--font-serif);
}

.ip10-home .testimonial-author { display: flex; align-items: center; gap: 12px; }

.ip10-home .author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 2px solid var(--gray-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  font-weight: 800;
  color: var(--navy) !important;
  flex-shrink: 0;
}

.ip10-home .author-name {
  font-size: .88rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.ip10-home .author-role {
  font-size: .77rem;
  color: var(--gray-txt) !important;
}

/* ============================================================
   CTA FINAL
============================================================ */
.ip10-home .cta-section {
  background: var(--orange);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ip10-home .cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255,255,255,.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(0,0,0,.08) 0%, transparent 60%);
  pointer-events: none;
}

.ip10-home .cta-inner { position: relative; z-index: 2; }

.ip10-home .cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  font-weight: 900 !important;
  color: #FFFFFF !important;
  margin-bottom: 14px !important;
  line-height: 1.15 !important;
  font-family: var(--font-main) !important;
}

.ip10-home .cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.ip10-home .cta-note {
  margin-top: 18px;
  font-size: .82rem;
  color: rgba(255,255,255,.7) !important;
}

/* ============================================================
   PARTNERS
============================================================ */
.ip10-home .partners-section { padding: 80px 0; background: var(--gray-bg); }

.ip10-home .partners-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-txt) !important;
  margin-bottom: 48px;
}

.ip10-home .partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .7;
  filter: grayscale(100%);
  transition: var(--transition);
}

.ip10-home .partners-row:hover { opacity: 1; filter: grayscale(0); }

.ip10-home .partner-logo {
  height: 100px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}

/* ============================================================
   SCROLL ANIMATION — CSS puro, sin dependencia de JS
   Usa @keyframes con animation-play-state para disparar
   cuando el elemento entra en viewport vía animation-delay.
   Fallback seguro: si el navegador no soporta, muestra visible.
============================================================ */
.ip10-home .fade-up {
  animation: ip10-fade-up .6s ease both;
}

.ip10-home .fade-up[style*="transition-delay:.05s"]  { animation-delay: .1s; }
.ip10-home .fade-up[style*="transition-delay:.08s"]  { animation-delay: .15s; }
.ip10-home .fade-up[style*="transition-delay:.1s"]   { animation-delay: .2s; }
.ip10-home .fade-up[style*="transition-delay:.12s"]  { animation-delay: .25s; }
.ip10-home .fade-up[style*="transition-delay:.15s"]  { animation-delay: .3s; }
.ip10-home .fade-up[style*="transition-delay:.16s"]  { animation-delay: .3s; }
.ip10-home .fade-up[style*="transition-delay:.2s"]   { animation-delay: .4s; }
.ip10-home .fade-up[style*="transition-delay:.25s"]  { animation-delay: .5s; }
.ip10-home .fade-up[style*="transition-delay:.3s"]   { animation-delay: .6s; }
.ip10-home .fade-up[style*="transition-delay:.04s"]  { animation-delay: .08s; }

/* Clase .visible por si el JS sí corre (compatibilidad hacia atrás) */
.ip10-home .fade-up.visible {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

@keyframes ip10-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .ip10-home .hero-inner,
  .ip10-home .process-grid,
  .ip10-home .geo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ip10-home .hero-visual        { display: none; }
  .ip10-home .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .ip10-home .numbers-grid       { grid-template-columns: repeat(2, 1fr); }
  .ip10-home .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .ip10-home .portfolio-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ip10-home .hero              { padding: 100px 0 60px; min-height: auto; }
  .ip10-home .services-grid     { grid-template-columns: 1fr; }
  .ip10-home .portfolio-grid    { grid-template-columns: 1fr; }
  .ip10-home .testimonials-grid { grid-template-columns: 1fr; }
  .ip10-home .numbers-grid      { grid-template-columns: repeat(2, 1fr); }
  .ip10-home .hero-stats        { gap: 20px; }
  .ip10-home .trust-inner       { gap: 24px; }
  .ip10-home .geo-platforms     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ip10-home .numbers-grid  { grid-template-columns: 1fr 1fr; }
  .ip10-home .hero-ctas     { flex-direction: column; }
  .ip10-home .geo-cta-row   { flex-direction: column; }
}/* End custom CSS */