/* =====================================================
   INDUSTRIAL TRACK
   V1 EXPRESS
===================================================== */


:root {

  --blue: #1264f4;
  --blue-bright: #0868ff;
  --blue-deep: #063b92;
  --blue-dark: #052b70;

  --black: #111820;
  --graphite: #303944;

  --gray: #59626c;
  --gray-light: #f4f6f9;

  --white: #ffffff;

  --green: #16be63;

  --container: 1420px;

}


/* =====================================================
   RESET
===================================================== */

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


html {
  scroll-behavior: smooth;
}


body {

  font-family: "Inter", sans-serif;

  color: var(--black);

  background: white;

  overflow-x: hidden;

}


button,
a {
  font: inherit;
}


button {
  border: none;
}


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


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


.container {

  width: min(92%, var(--container));

  margin-left: auto;
  margin-right: auto;

}



/* =====================================================
   HEADER
===================================================== */

.header {

  width: 100%;

  height: 148px;

  position: relative;

  z-index: 100;

  background:

    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 85%,
      #fafbfd 100%
    );

  border-bottom: 1px solid #edf0f4;

}


.header-inner {

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

}


.brand {

  display: flex;

  align-items: center;

}


.brand-logo {

  width: 355px;

  max-height: 130px;

  object-fit: contain;

  object-position: left center;

}


/* WHATSAPP HEADER */

.header-whatsapp {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  padding: 17px 26px;

  border-radius: 12px;

  background: var(--green);

  color: white;

  font-size: 16px;

  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(22, 190, 99, 0.2);

  transition: 0.25s ease;

}


.header-whatsapp:hover {

  transform: translateY(-2px);

  box-shadow:
    0 15px 35px rgba(22, 190, 99, 0.3);

}


.whatsapp-symbol {

  width: 27px;

  height: 27px;

  border-radius: 50%;

  border: 2px solid white;

  display: grid;

  place-items: center;

  font-size: 13px;

}



/* =====================================================
   HERO GENERAL
===================================================== */

.hero {

  position: relative;

  min-height: 720px;

  display: flex;

  align-items: center;

  overflow: hidden;

  background:

    radial-gradient(
      circle at 44% 35%,
      rgba(54, 126, 255, 0.09),
      transparent 24%
    ),

    linear-gradient(
      110deg,
      #ffffff 0%,
      #fdfefe 43%,
      #f1f5fb 66%,
      #e8eef7 100%
    );

}


/* Líneas tecnológicas */

.hero-tech-lines {

  position: absolute;

  inset: 0;

  opacity: 0.45;

  pointer-events: none;

  background-image:

    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(10, 98, 240, 0.05) 50%,
      transparent 50.2%
    ),

    linear-gradient(
      transparent 49.8%,
      rgba(10, 98, 240, 0.04) 50%,
      transparent 50.2%
    );

  background-size:
    130px 130px;

}



/* INDUSTRIAL BACKGROUND IZQUIERDO */

.hero-left-structure {

  position: absolute;

  left: -80px;

  bottom: 0;

  width: 620px;

  height: 490px;

  opacity: 0.06;

  background:

    linear-gradient(
      90deg,
      transparent 7%,
      var(--blue) 8%,
      transparent 9%,
      transparent 23%,
      var(--blue) 24%,
      transparent 25%
    );

  clip-path:
    polygon(
      0 100%,
      0 35%,
      10% 35%,
      10% 18%,
      14% 18%,
      14% 55%,
      28% 55%,
      28% 5%,
      33% 5%,
      33% 65%,
      46% 65%,
      46% 27%,
      51% 27%,
      51% 70%,
      63% 70%,
      63% 20%,
      70% 20%,
      70% 72%,
      100% 72%,
      100% 100%
    );

}



/* =====================================================
   ZONA AZUL DERECHA
===================================================== */

.hero-blue-zone {

  position: absolute;

  right: -7%;

  top: 0;

  width: 56%;

  height: 100%;

  z-index: 0;

  overflow: hidden;

  background:

    radial-gradient(
      circle at 45% 45%,
      #0b61ec,
      #0642aa 42%,
      #032e7b 72%,
      #042760 100%
    );

  clip-path:
    polygon(
      36% 0,
      100% 0,
      100% 100%,
      0 100%
    );

}


/* Patrón digital */

.blue-tech-grid {

  position: absolute;

  inset: 0;

  opacity: 0.17;

  background-image:

    linear-gradient(
      rgba(255,255,255,0.3) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,0.3) 1px,
      transparent 1px
    );

  background-size:
    55px 55px;

  transform: perspective(600px) rotateX(15deg);

}



/* círculos fondo */

.blue-circle {

  position: absolute;

  border-radius: 50%;

  border:
    1px solid rgba(255,255,255,0.14);

}


.blue-circle-1 {

  width: 540px;
  height: 540px;

  top: 80px;
  left: 120px;

}


.blue-circle-2 {

  width: 430px;
  height: 430px;

  top: 135px;
  left: 175px;

}


.blue-circle-3 {

  width: 320px;
  height: 320px;

  top: 190px;
  left: 230px;

}



/* =====================================================
   HERO GRID
===================================================== */

.hero-grid {

  position: relative;

  z-index: 10;

  display: grid;

  grid-template-columns:
    51% 49%;

  align-items: center;

  min-height: 720px;

}



/* =====================================================
   HERO COPY
===================================================== */

.hero-copy {

  position: relative;

  z-index: 20;

  padding-top: 15px;

}


.hero-kicker {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 38px;

  color: var(--blue-bright);

  font-size: 13px;

  letter-spacing: 2.3px;

  font-weight: 800;

}


.hero-kicker-line {

  display: block;

  width: 31px;

  height: 2px;

  background: var(--blue);

}


.hero h1 {

  font-family:
    "Montserrat",
    sans-serif;

  max-width: 790px;

  font-size:
    clamp(
      46px,
      4vw,
      66px
    );

  line-height: 1.06;

  letter-spacing: -2.5px;

  font-weight: 900;

  color: #151b22;

}


.hero h1 span {

  color: var(--blue-bright);

}


.hero-description {

  width: 610px;

  max-width: 94%;

  margin-top: 32px;

  color: #515b66;

  font-size: 17px;

  line-height: 1.7;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {

  margin-top: 35px;

  display: flex;

  align-items: center;

  gap: 20px;

}


.btn {

  min-height: 56px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  padding:
    0 28px;

  border-radius: 12px;

  font-weight: 800;

  cursor: pointer;

  transition: 0.25s ease;

}


.btn:hover {

  transform: translateY(-3px);

}


.btn-primary {

  background:
    linear-gradient(
      135deg,
      #0670ff,
      #075be8
    );

  color: white;

  box-shadow:
    0 14px 35px
    rgba(6, 103, 245, 0.25);

}


.btn-primary:hover {

  box-shadow:
    0 18px 40px
    rgba(6, 103, 245, 0.35);

}


.btn-icon {

  border:
    2px solid white;

  border-radius: 50%;

  width: 27px;

  height: 27px;

  display: grid;

  place-items: center;

  font-size: 12px;

}


.btn-outline {

  background:
    rgba(255,255,255,0.75);

  border:
    1.5px solid var(--blue);

  color: var(--blue);

}


.btn-outline:hover {

  background:
    var(--blue);

  color:
    white;

}


.arrow {

  font-size: 22px;

}



/* =====================================================
   BENEFITS
===================================================== */

.hero-benefits {

  margin-top: 52px;

  display: flex;

  align-items: center;

  gap: 20px;

}


.benefit {

  display: flex;

  align-items: center;

  gap: 11px;

  color: #343d47;

  font-size: 12px;

  line-height: 1.4;

}


.benefit span {

  display: flex;

  flex-direction: column;

}


.benefit strong {

  font-weight: 600;

}


.benefit-icon {

  width: 35px;

  height: 35px;

  display: grid;

  place-items: center;

  color: var(--blue);

  font-weight: 900;

  font-size: 16px;

}


.benefit-divider {

  width: 1px;

  height: 38px;

  background:
    #dfe4ea;

}



/* =====================================================
   BIT
===================================================== */

.hero-bit-area {

  position: relative;

  height: 720px;

  display: flex;

  align-items: flex-end;

  justify-content: center;

  z-index: 5;

}


.bit-image {

  position: relative;

  z-index: 10;

  width: auto;

  height: 645px;

  max-width: none;

  object-fit: contain;

  object-position:
    center bottom;

  filter:
    drop-shadow(
      0 22px 20px
      rgba(0,0,0,0.24)
    );

}



/* =====================================================
   RINGS DETRÁS DE BIT
===================================================== */

.tech-ring {

  position: absolute;

  left: 50%;

  top: 49%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

}


.ring-1 {

  width: 510px;

  height: 510px;

  border:
    2px solid
    rgba(255,255,255,0.16);

  box-shadow:

    0 0 0 22px
    rgba(50,143,255,0.05),

    0 0 80px
    rgba(40,156,255,0.18);

}


.ring-2 {

  width: 425px;

  height: 425px;

  border:

    1px dashed
    rgba(255,255,255,0.35);

}


.ring-3 {

  width: 350px;

  height: 350px;

  border:

    1px solid
    rgba(115,194,255,0.35);

}



/* =====================================================
   SCROLL DOWN
===================================================== */

.scroll-down {

  position: absolute;

  bottom: 12px;

  left: 50%;

  z-index: 50;

  color: var(--blue);

  transform:
    translateX(-50%);

  font-size: 38px;

  font-weight: 300;

  animation:
    floatingArrow
    1.6s infinite;

}


@keyframes floatingArrow {

  0%,
  100% {

    transform:
      translate(
        -50%,
        0
      );

  }

  50% {

    transform:
      translate(
        -50%,
        7px
      );

  }

}



/* =====================================================
   SOLUTIONS
===================================================== */

.solutions {

  position: relative;

  z-index: 30;

  background: white;

  padding:
    48px 0 80px;

}


.section-title {

  text-align: center;

  margin-bottom: 38px;

}


.section-title > span {

  color: var(--blue);

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 1.3px;

}


.section-title h2 {

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 30px;

  margin-top: 5px;

  color: #111820;

}


.title-line {

  width: 39px;

  height: 2px;

  margin:
    15px auto 0;

  background: var(--blue);

}


.solutions-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;

}


.solution-card {

  min-height: 275px;

  padding:
    24px 23px;

  display: flex;

  flex-direction: column;

  background:

    linear-gradient(
      145deg,
      #ffffff,
      #fbfcfe
    );

  border:
    1px solid #e5eaf0;

  border-radius:
    15px;

  box-shadow:

    0 10px 30px
    rgba(13, 38, 76, 0.07);

  transition:
    0.25s ease;

}


.solution-card:hover {

  transform:
    translateY(-6px);

  border-color:
    rgba(6,104,255,0.4);

  box-shadow:

    0 18px 40px
    rgba(13, 38, 76, 0.12);

}


.solution-card.featured {

  background:

    linear-gradient(
      145deg,
      #f8fbff,
      #edf5ff
    );

  border-color:
    rgba(6,104,255,0.3);

}


.solution-icon {

  color: var(--blue);

  font-size: 27px;

  margin-bottom: 20px;

  font-weight: 800;

}


.solution-card h3 {

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 16px;

  margin-bottom: 13px;

}


.solution-card p {

  color: #58626c;

  font-size: 13px;

  line-height: 1.6;

  margin-bottom: 25px;

}


.solution-link {

  margin-top: auto;

  align-self: flex-start;

  background: none;

  color: var(--blue);

  font-size: 12px;

  font-weight: 800;

  cursor: pointer;

}



/* =====================================================
   FLOAT WHATSAPP
===================================================== */

.floating-whatsapp {

  position: fixed;

  right: 24px;

  bottom: 22px;

  z-index: 1000;

  min-height: 58px;

  display: flex;

  align-items: center;

  gap: 10px;

  padding:
    8px 19px 8px 9px;

  border-radius:
    999px;

  color: white;

  background:
    var(--green);

  font-weight: 800;

  cursor: pointer;

  box-shadow:

    0 15px 35px
    rgba(15,177,88,0.35);

  transition:
    0.25s ease;

}


.floating-whatsapp:hover {

  transform:
    translateY(-3px);

}


.floating-whatsapp-icon {

  width: 40px;

  height: 40px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: white;

  color: var(--green);

}



/* =====================================================
   TABLET
===================================================== */

@media
(max-width: 1150px) {


  .brand-logo {

    width: 290px;

  }


  .hero {

    min-height:
      auto;

  }


  .hero-grid {

    grid-template-columns:
      1fr;

    padding-top:
      60px;

  }


  .hero-copy {

    text-align:
      center;

  }


  .hero-kicker,
  .hero-buttons,
  .hero-benefits {

    justify-content:
      center;

  }


  .hero-description {

    margin-left:
      auto;

    margin-right:
      auto;

  }


  .hero-blue-zone {

    top: auto;

    bottom: 0;

    width: 100%;

    height: 650px;

    clip-path:
      polygon(
        0 25%,
        100% 0,
        100% 100%,
        0 100%
      );

  }


  .hero-bit-area {

    height: 650px;

  }


  .bit-image {

    height: 600px;

  }


  .solutions-grid {

    grid-template-columns:
      repeat(2, 1fr);

  }

}



/* =====================================================
   MOBILE
===================================================== */

@media
(max-width: 700px) {


  .header {

    height: 105px;

  }


  .brand-logo {

    width: 190px;

  }


  .header-whatsapp {

    padding:
      12px;

  }


  .header-whatsapp span:last-child {

    display: none;

  }


  .hero-grid {

    padding-top:
      45px;

  }


  .hero-kicker {

    font-size:
      9px;

    letter-spacing:
      1px;

  }


  .hero h1 {

    font-size:
      37px;

    letter-spacing:
      -1.5px;

  }


  .hero-description {

    font-size:
      15px;

  }


  .hero-buttons {

    flex-direction:
      column;

  }


  .hero-buttons .btn {

    width:
      100%;

  }


  .hero-benefits {

    display:
      grid;

    grid-template-columns:
      repeat(2,1fr);

  }


  .benefit-divider {

    display:
      none;

  }


  .hero-bit-area {

    height:
      490px;

  }


  .bit-image {

    height:
      455px;

  }


  .hero-blue-zone {

    height:
      500px;

  }


  .ring-1 {

    width:
      370px;

    height:
      370px;

  }


  .ring-2 {

    width:
      310px;

    height:
      310px;

  }


  .ring-3 {

    width:
      250px;

    height:
      250px;

  }


  .solutions-grid {

    grid-template-columns:
      1fr;

  }


  .floating-whatsapp span:last-child {

    display:
      none;

  }


  .floating-whatsapp {

    padding:
      8px;

  }

}


/* =====================================================
   TITULOS GENERALES NUEVAS SECCIONES
===================================================== */

.section-heading-center {
  max-width: 820px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-heading-center h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  color: var(--black);
}

.section-heading-center p {
  margin-top: 18px;
  color: #626c76;
  font-size: 16px;
  line-height: 1.7;
}


/* =====================================================
   PROBLEMAS REALES
===================================================== */

.real-problems {
  padding: 110px 0;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(18, 100, 244, 0.08),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      #f7f9fc,
      #ffffff
    );
}

.real-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.real-problem-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e2e8ef;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 10px 30px rgba(15, 37, 69, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.real-problem-card:hover {
  transform: translateY(-7px);
  border-color: rgba(18,100,244,0.35);
  box-shadow: 0 20px 45px rgba(15,37,69,0.11);
}

.problem-index {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: rgba(17,24,32,0.06);
}

.problem-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #edf4ff;
  font-size: 22px;
}

.real-problem-card h3 {
  margin-bottom: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.real-problem-card p {
  color: #616b75;
  font-size: 14px;
  line-height: 1.7;
}

.problem-featured {
  color: white;
  background:
    radial-gradient(
      circle at top right,
      rgba(255,255,255,0.14),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #0759d8,
      #063b91
    );
  border-color: transparent;
}

.problem-featured .problem-index {
  color: rgba(255,255,255,0.12);
}

.problem-featured .problem-icon {
  background: rgba(255,255,255,0.15);
}

.problem-featured h3 {
  color: white;
}

.problem-featured p {
  color: rgba(255,255,255,0.75);
}

.problem-link {
  margin-top: 24px;
  background: none;
  color: white;
  font-weight: 800;
  cursor: pointer;
}

.real-problem-cta {
  margin-top: 40px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-radius: 20px;
  background: linear-gradient(120deg, #111820, #27313c);
  color: white;
}

.real-problem-cta span {
  color: #75a8ff;
  font-size: 11px;
  letter-spacing: 1.4px;
  font-weight: 800;
}

.real-problem-cta h3 {
  margin-top: 7px;
  max-width: 730px;
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
}


/* =====================================================
   COMO TRABAJAMOS
===================================================== */

.how-we-work {
  position: relative;
  padding: 115px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(18,100,244,0.18),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #0d131a,
      #111b27 55%,
      #082d69
    );
  color: white;
}

.how-we-work::after {
  content: "";
  position: absolute;
  right: -150px;
  top: -180px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 80px rgba(255,255,255,0.018),
    0 0 0 160px rgba(255,255,255,0.012);
}

.how-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 90px;
  align-items: center;
}

.how-copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(39px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.how-highlight {
  max-width: 590px;
  margin-bottom: 22px;
  padding-left: 20px;
  border-left: 4px solid var(--blue);
  color: #c8d1db;
  font-size: 20px;
  line-height: 1.6;
}

.how-highlight strong {
  display: block;
  color: white;
}

.how-text {
  max-width: 600px;
  margin-bottom: 32px;
  color: #98a4af;
  font-size: 15px;
  line-height: 1.8;
}

.how-process {
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: start;
}

.step-number {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(100,160,255,0.5);
  border-radius: 16px;
  background: rgba(21,101,255,0.12);
  color: #72a6ff;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 900;
}

.step-content {
  padding-top: 4px;
}

.step-content span {
  color: #6d9ef4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.step-content h3 {
  margin: 5px 0 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.step-content p {
  max-width: 480px;
  color: #9ca8b3;
  font-size: 13px;
  line-height: 1.7;
}

.process-line {
  width: 1px;
  height: 40px;
  margin: 6px 0 6px 29px;
  background:
    linear-gradient(
      to bottom,
      rgba(75,145,255,0.7),
      rgba(75,145,255,0.1)
    );
}


/* =====================================================
   CASOS
===================================================== */

.cases {
  padding: 115px 0;
  background: #f6f8fb;
}

.cases-heading {
  max-width: 900px;
}

.cases-grid {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.case-card {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #e2e7ed;
  border-radius: 26px;
  background: white;
  box-shadow: 0 18px 50px rgba(16,38,70,0.08);
}

.case-card-reverse .case-visual {
  order: 2;
}

.case-visual {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 50px;
}

.case-industrial {
  background:
    radial-gradient(
      circle at center,
      rgba(56,135,255,0.42),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      #062b68,
      #064bbd
    );
}

.case-commerce {
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(18,100,244,0.15),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #edf4ff,
      #ffffff
    );
}

.case-tag {
  position: absolute;
  top: 27px;
  left: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.3px;
}

.case-commerce .case-tag {
  background: #e6efff;
  color: var(--blue);
}

.case-mockup {
  width: 88%;
  max-width: 470px;
  overflow: hidden;
  border-radius: 18px;
  background: white;
  box-shadow: 0 25px 55px rgba(0,0,0,0.28);
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
}

.mockup-bar {
  height: 35px;
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef1f5;
}

.mockup-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aab2bb;
}

.mockup-content {
  min-height: 310px;
  display: grid;
  grid-template-columns: 75px 1fr;
}

.mockup-sidebar {
  background: #101820;
}

.mockup-main {
  padding: 26px;
}

.mockup-title {
  width: 48%;
  height: 14px;
  margin-bottom: 25px;
  border-radius: 999px;
  background: #1264f4;
}

.mockup-row {
  width: 100%;
  height: 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #e5eaf0;
}

.mockup-row.small {
  width: 65%;
}

.mockup-columns {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 30px;
}

.mockup-columns div {
  height: 110px;
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      #edf4ff,
      #dce9ff
    );
}

.commerce-mockup {
  width: 88%;
  max-width: 500px;
  padding: 22px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 20px 50px rgba(18,55,98,0.15);
  transform: perspective(1000px) rotateY(6deg);
}

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

.commerce-header div:first-child {
  width: 120px;
  height: 14px;
  border-radius: 999px;
  background: #1264f4;
}

.commerce-header div:last-child {
  width: 65px;
  height: 28px;
  border-radius: 999px;
  background: #e6efff;
}

.commerce-products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.product-mockup {
  height: 145px;
  border-radius: 13px;
  background: linear-gradient(145deg, #edf2f7, #dfe8f4);
}

.commerce-dashboard {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 9px;
  margin-top: 20px;
}

.commerce-dashboard div {
  height: 55px;
  border-radius: 9px;
  background: #f0f5ff;
}

.case-content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-number {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.case-content h3 {
  max-width: 570px;
  margin-bottom: 22px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 39px);
  line-height: 1.12;
  letter-spacing: -1px;
}

.case-intro {
  margin-bottom: 30px;
  color: #5b6670;
  line-height: 1.75;
}

.case-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}

.case-details span {
  display: inline-block;
  margin-bottom: 8px;
  color: #1264f4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.1px;
}

.case-details p {
  color: #626d77;
  font-size: 13px;
  line-height: 1.6;
}

.case-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.case-features span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #edf4ff;
  color: #0756d1;
  font-size: 10px;
  font-weight: 700;
}

.case-contact {
  align-self: flex-start;
  background: none;
  color: var(--blue);
  font-weight: 800;
  cursor: pointer;
}


/* =====================================================
   INDUSTRIAS
===================================================== */

.industries {
  padding: 90px 0;
  overflow: hidden;
  background: linear-gradient(120deg, #ffffff, #edf4ff);
}

.industries-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.industries-copy h2 {
  max-width: 620px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industries-list span {
  padding: 12px 17px;
  border: 1px solid #d8e1ed;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  color: #394451;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(20,49,86,0.04);
}


/* =====================================================
   RESPONSIVE NUEVAS SECCIONES
===================================================== */

@media (max-width: 1100px) {

  .real-problems-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    grid-template-columns: 1fr;
  }

  .case-card-reverse .case-visual {
    order: initial;
  }

  .industries-inner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 700px) {

  .real-problems,
  .how-we-work,
  .cases {
    padding: 80px 0;
  }

  .real-problems-grid {
    grid-template-columns: 1fr;
  }

  .real-problem-card {
    min-height: auto;
  }

  .real-problem-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .real-problem-cta .btn {
    width: 100%;
  }

  .how-grid {
    gap: 55px;
  }

  .how-copy h2 {
    font-size: 38px;
  }

  .process-step {
    grid-template-columns: 55px 1fr;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }

  .process-line {
    margin-left: 24px;
  }

  .case-visual {
    min-height: 390px;
    padding: 35px 20px;
  }

  .case-content {
    padding: 35px 25px;
  }

  .case-details {
    grid-template-columns: 1fr;
  }

  .industries {
    padding: 70px 0;
  }

}


/* =====================================================
   CASOS REALES - CAPTURAS DE PROYECTOS
===================================================== */

.case-real-shot {
  position: relative;
  z-index: 3;
  width: 94%;
  max-width: 590px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 65px rgba(0,0,0,0.30);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.case-card:hover .case-real-shot {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 34px 75px rgba(0,0,0,0.34);
}

.case-card-reverse .case-real-shot {
  transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
  border-color: #dce5f0;
  box-shadow: 0 28px 65px rgba(19,55,98,0.18);
}

.case-card-reverse:hover .case-real-shot {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-5px);
  box-shadow: 0 34px 75px rgba(19,55,98,0.23);
}

.case-browser-bar {
  height: 34px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #eef2f6;
  border-bottom: 1px solid #dfe5ec;
}

.case-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aab3bd;
  flex: 0 0 auto;
}

.case-browser-bar small {
  margin-left: 9px;
  overflow: hidden;
  color: #687481;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-real-shot img {
  display: block;
  width: 100%;
  height: 355px;
  object-fit: cover;
  object-position: top left;
}

.ecommerce-real-shot img {
  object-position: top left;
}

.case-industrial::before,
.case-commerce::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    0 0 0 55px rgba(255,255,255,.025),
    0 0 0 110px rgba(255,255,255,.018);
}

.case-commerce::before {
  border-color: rgba(18,100,244,.08);
  box-shadow:
    0 0 0 55px rgba(18,100,244,.025),
    0 0 0 110px rgba(18,100,244,.015);
}

@media (max-width: 700px) {
  .case-real-shot {
    width: 100%;
    transform: none !important;
  }

  .case-real-shot img {
    height: 260px;
  }
}


/* =====================================================
   INDUSTRIAL TRACK — VISUAL PREMIUM UPGRADE
   Profundidad, energía y lenguaje tecnológico
===================================================== */

body {
  background: #f7f9fc;
}

/* ---------- Fondo con textura tecnológica ---------- */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .26;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(18,100,244,.10) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 70%, rgba(18,100,244,.08) 0 1px, transparent 1.5px);
  background-size: 34px 34px, 46px 46px;
  mask-image: linear-gradient(to right, #000 0%, transparent 55%);
}

.hero-copy {
  filter: drop-shadow(0 16px 35px rgba(20,46,80,.04));
}

.hero h1 span {
  background: linear-gradient(100deg, #0868ff 0%, #2c7dff 55%, #0756d7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-blue-zone {
  box-shadow: inset 35px 0 75px rgba(0,0,0,.08);
}

.bit-image {
  filter:
    drop-shadow(0 30px 24px rgba(0,0,0,.24))
    drop-shadow(0 0 45px rgba(74,157,255,.14));
}

/* ---------- Servicios ---------- */
.solutions {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 5%, rgba(18,100,244,.075), transparent 22%),
    radial-gradient(circle at 92% 82%, rgba(18,100,244,.055), transparent 20%),
    #fff;
}

.solutions::before {
  content: "";
  position: absolute;
  top: 80px;
  left: -180px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(18,100,244,.07);
  box-shadow:
    0 0 0 55px rgba(18,100,244,.018),
    0 0 0 110px rgba(18,100,244,.012);
}

.solution-card {
  position: relative;
  overflow: hidden;
  border-top: 2px solid rgba(18,100,244,.14);
  box-shadow:
    0 14px 35px rgba(15,37,69,.075),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.solution-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -65px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18,100,244,.08), transparent 68%);
  transition: transform .35s ease;
}

.solution-card:hover::after {
  transform: scale(1.35);
}

.solution-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, #f2f7ff, #e4efff);
  box-shadow: inset 0 0 0 1px rgba(18,100,244,.08);
}

/* ---------- Decoración reutilizable ---------- */
.visual-orb,
.industries-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(2px);
}

.section-grid-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .20;
  background-image:
    linear-gradient(rgba(18,100,244,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,100,244,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

/* ---------- Problemas ---------- */
.real-problems {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(18,100,244,.12), transparent 23%),
    linear-gradient(180deg, #f3f7fc 0%, #ffffff 100%);
}

.real-problems > .container {
  position: relative;
  z-index: 3;
}

.visual-orb-a {
  width: 520px;
  height: 520px;
  top: 30px;
  right: -220px;
  border: 1px solid rgba(18,100,244,.10);
  box-shadow:
    0 0 0 70px rgba(18,100,244,.025),
    0 0 0 140px rgba(18,100,244,.015);
}

.visual-orb-b {
  width: 300px;
  height: 300px;
  bottom: 70px;
  left: -170px;
  background: radial-gradient(circle, rgba(18,100,244,.09), transparent 68%);
}

.real-problem-card {
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,.88);
  box-shadow:
    0 15px 40px rgba(15,37,69,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.real-problem-card:not(.problem-featured)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 3px;
  height: 42px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(#0868ff, #64a2ff);
  opacity: .65;
}

.problem-featured {
  box-shadow:
    0 20px 48px rgba(5,59,145,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
}

/* ---------- Cómo trabajamos ---------- */
.how-we-work {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(255,255,255,.04);
}

.how-we-work::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(102,165,255,.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102,165,255,.10) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 67%);
}

.step-number {
  box-shadow:
    0 12px 30px rgba(0,73,188,.16),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.process-step {
  padding: 10px 12px;
  border-radius: 18px;
  transition: background .25s ease, transform .25s ease;
}

.process-step:hover {
  background: rgba(255,255,255,.035);
  transform: translateX(5px);
}

/* ---------- Casos reales ---------- */
.cases {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(18,100,244,.07), transparent 20%),
    radial-gradient(circle at 92% 72%, rgba(18,100,244,.06), transparent 22%),
    #f4f7fb;
}

.cases > .container {
  position: relative;
  z-index: 3;
}

.cases-grid-texture {
  opacity: .13;
  background-size: 90px 90px;
}

.cases-orb {
  width: 580px;
  height: 580px;
  right: -300px;
  top: 240px;
  border: 1px solid rgba(18,100,244,.09);
  box-shadow:
    0 0 0 75px rgba(18,100,244,.018),
    0 0 0 150px rgba(18,100,244,.012);
}

.case-card {
  position: relative;
  border-color: rgba(207,219,232,.85);
  box-shadow:
    0 24px 65px rgba(20,48,83,.10),
    0 2px 6px rgba(20,48,83,.04);
  transition: transform .35s ease, box-shadow .35s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 34px 80px rgba(20,48,83,.14),
    0 3px 8px rgba(20,48,83,.05);
}

.case-content {
  position: relative;
}

.case-content::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 32px;
  width: 72px;
  height: 72px;
  border-top: 1px solid rgba(18,100,244,.13);
  border-right: 1px solid rgba(18,100,244,.13);
  border-radius: 0 18px 0 0;
}

.case-features span {
  border: 1px solid rgba(18,100,244,.08);
  box-shadow: 0 4px 10px rgba(18,100,244,.04);
}

/* ---------- Industrias ---------- */
.industries {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(115deg, #ffffff 0%, #f0f6ff 60%, #e5efff 100%);
}

.industries > .container {
  position: relative;
  z-index: 2;
}

.industries-glow {
  z-index: 0;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -240px;
  background: radial-gradient(circle, rgba(18,100,244,.15), transparent 67%);
}

.industries-list span {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  box-shadow:
    0 8px 22px rgba(20,49,86,.055),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.industries-list span:hover {
  transform: translateY(-3px);
  border-color: rgba(18,100,244,.32);
  box-shadow: 0 13px 28px rgba(20,49,86,.10);
}

/* ---------- CTA y botones ---------- */
.btn-primary,
.header-whatsapp,
.floating-whatsapp {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.header-whatsapp::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 55%;
  height: 220%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.23), transparent);
  transition: left .55s ease;
}

.btn-primary:hover::after,
.header-whatsapp:hover::after {
  left: 125%;
}

/* ---------- Scroll reveal discreto ---------- */
@media (prefers-reduced-motion: no-preference) {
  .solution-card,
  .real-problem-card,
  .case-card,
  .process-step {
    animation: premiumFadeIn .65s ease both;
  }

  @keyframes premiumFadeIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .section-grid-texture,
  .visual-orb,
  .industries-glow {
    opacity: .45;
  }

  .case-content::after {
    display: none;
  }

  .solution-card,
  .real-problem-card,
  .case-card {
    box-shadow: 0 14px 34px rgba(20,48,83,.09);
  }
}


/* =====================================================
   INDUSTRIAL TRACK — REDISEÑO VISUAL FUERTE
   Cambios estructurales visibles, no solo microdetalles.
===================================================== */

/* ---------- ritmo general ---------- */
main > section {
  position: relative;
}

main > section:not(.hero) {
  border-top: 1px solid rgba(18,100,244,.06);
}

/* ---------- números gigantes por sección ---------- */
.section-number {
  position: absolute;
  z-index: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(110px, 14vw, 220px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -12px;
  user-select: none;
  pointer-events: none;
}

.section-number-solutions {
  right: 4%;
  top: 35px;
  color: rgba(18,100,244,.045);
}

.section-number-problems {
  left: 2%;
  top: 35px;
  color: rgba(18,100,244,.045);
}

.section-number-how {
  right: 3%;
  top: 40px;
  color: rgba(255,255,255,.04);
}

.section-number-cases {
  left: 2%;
  top: 40px;
  color: rgba(18,100,244,.045);
}

/* ---------- SOLUCIONES: bento visual real ---------- */
.solutions {
  padding: 95px 0 110px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%) !important;
}

.solutions .container {
  position: relative;
  z-index: 2;
}

.solutions-grid {
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 18px !important;
}

.solution-card {
  min-height: 250px !important;
  border-radius: 22px !important;
  padding: 28px !important;
  background: rgba(255,255,255,.96) !important;
  box-shadow: 0 20px 45px rgba(14,43,85,.09) !important;
}

.solution-card:nth-child(1),
.solution-card:nth-child(2),
.solution-card:nth-child(3),
.solution-card:nth-child(4) {
  grid-column: span 3;
}

.solution-card:nth-child(5),
.solution-card:nth-child(6),
.solution-card:nth-child(7),
.solution-card:nth-child(8) {
  grid-column: span 3;
}

.solution-card:nth-child(1),
.solution-card:nth-child(5),
.solution-card:nth-child(8) {
  background:
    linear-gradient(145deg, #ffffff 0%, #eef5ff 100%) !important;
}

.solution-card:nth-child(4),
.solution-card:nth-child(7) {
  transform: translateY(18px);
}

.solution-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
}

.solution-card:nth-child(4):hover,
.solution-card:nth-child(7):hover {
  transform: translateY(8px) scale(1.015) !important;
}

.solution-icon {
  width: 60px !important;
  height: 60px !important;
  font-size: 28px !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, #0f65ff, #063f9f) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(18,100,244,.22) !important;
}

.solution-card h3 {
  font-size: 18px !important;
  margin-top: 4px;
}

/* ---------- PROBLEMAS: contraste fuerte ---------- */
.real-problems {
  padding: 110px 0 125px !important;
  background:
    linear-gradient(135deg, #081521 0%, #0c2238 55%, #0a3f86 100%) !important;
  color: #fff;
}

.real-problems .section-heading-center h2,
.real-problems .section-heading-center p {
  color: #fff !important;
}

.real-problems .section-heading-center p {
  color: rgba(255,255,255,.72) !important;
}

.real-problems .section-eyebrow {
  color: #7db0ff !important;
}

.real-problems-grid {
  gap: 16px !important;
}

.real-problem-card {
  min-height: 250px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  backdrop-filter: blur(14px);
  color: #fff;
  box-shadow: none !important;
}

.real-problem-card h3 {
  color: #fff !important;
}

.real-problem-card p {
  color: rgba(255,255,255,.70) !important;
}

.real-problem-card:not(.problem-featured)::before {
  background: linear-gradient(#4d98ff, #9cc6ff) !important;
}

.problem-icon {
  background: rgba(255,255,255,.10) !important;
  color: #fff;
}

.problem-featured {
  background:
    linear-gradient(145deg, #1468ff, #063b91) !important;
  box-shadow: 0 22px 55px rgba(0,0,0,.24) !important;
}

.real-problem-cta {
  margin-top: 50px !important;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07) !important;
  backdrop-filter: blur(12px);
}

/* ---------- COMO TRABAJAMOS: layout partido visualmente ---------- */
.how-we-work {
  padding: 120px 0 !important;
  background:
    linear-gradient(90deg, #f7f9fc 0 50%, #0b1724 50% 100%) !important;
  color: var(--black) !important;
}

.how-we-work::before,
.how-we-work::after {
  display: none !important;
}

.how-grid {
  gap: 0 !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: stretch !important;
}

.how-copy {
  padding: 55px 65px 55px 0;
}

.how-copy h2 {
  color: #111820 !important;
}

.how-highlight {
  color: #4b5560 !important;
  border-left-color: #1264f4 !important;
}

.how-highlight strong {
  color: #111820 !important;
}

.how-text {
  color: #626d77 !important;
}

.how-process {
  padding: 50px 0 50px 65px;
  color: #fff;
}

.how-process .step-content h3 {
  color: #fff;
}

.how-process .step-content p {
  color: #aeb9c4;
}

.how-process .process-step {
  padding: 12px 14px;
  border-radius: 18px;
}

.how-process .process-step:hover {
  background: rgba(255,255,255,.05);
}

/* ---------- CASOS: aspecto editorial premium ---------- */
.cases {
  padding: 120px 0 !important;
  background:
    linear-gradient(180deg, #eef3f9 0%, #ffffff 100%) !important;
}

.case-card {
  border-radius: 32px !important;
  min-height: 560px !important;
  box-shadow: 0 28px 75px rgba(21,48,82,.13) !important;
}

.case-visual {
  min-height: 560px !important;
  padding: 58px !important;
}

.case-industrial {
  background:
    linear-gradient(145deg, #041c43 0%, #0a4db8 100%) !important;
}

.case-commerce {
  background:
    linear-gradient(145deg, #eef5ff 0%, #dceaff 100%) !important;
}

.case-content {
  padding: 70px 64px !important;
}

.case-content h3 {
  font-size: clamp(31px, 3vw, 44px) !important;
}

.case-real-shot {
  width: 100% !important;
  max-width: 650px !important;
  border-radius: 22px !important;
  box-shadow: 0 34px 75px rgba(0,0,0,.30) !important;
}

.case-real-shot img {
  height: 390px !important;
}

.case-card-reverse .case-real-shot {
  box-shadow: 0 34px 75px rgba(36,67,110,.20) !important;
}

/* ---------- INDUSTRIAS: banda visual de cierre ---------- */
.industries {
  padding: 100px 0 !important;
  background:
    linear-gradient(120deg, #0b1724 0%, #103766 100%) !important;
  color: #fff;
}

.industries .section-eyebrow {
  color: #7db0ff !important;
}

.industries-copy h2 {
  color: #fff !important;
}

.industries-list span {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.14) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.industries-list span:hover {
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(125,176,255,.45) !important;
}

/* ---------- separación diagonal entre secciones ---------- */
.solutions::after,
.real-problems::after,
.cases::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 54px;
  background: inherit;
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.real-problems::after {
  clip-path: polygon(0 0, 100% 70%, 100% 100%, 0 100%);
}

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .solution-card {
    grid-column: auto !important;
    transform: none !important;
  }

  .how-we-work {
    background: linear-gradient(180deg, #f7f9fc 0 48%, #0b1724 48% 100%) !important;
  }

  .how-grid {
    grid-template-columns: 1fr !important;
  }

  .how-copy {
    padding: 20px 0 70px;
  }

  .how-process {
    padding: 70px 0 20px;
  }
}

@media (max-width: 700px) {
  .section-number {
    display: none;
  }

  .solutions-grid {
    grid-template-columns: 1fr !important;
  }

  .how-we-work {
    background: linear-gradient(180deg, #f7f9fc 0 46%, #0b1724 46% 100%) !important;
  }

  .case-content {
    padding: 38px 26px !important;
  }

  .case-real-shot img {
    height: 260px !important;
  }
}

/* =====================================================
   V3 FIX - SOLUCIONES (9 TARJETAS)
   Mantiene todas las tarjetas con ancho uniforme.
===================================================== */
@media (min-width: 1101px) {
  .solutions-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .solutions-grid > .solution-card:nth-child(n) {
    grid-column: span 4 !important;
    transform: none !important;
    min-width: 0 !important;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .solutions-grid > .solution-card:nth-child(n) {
    grid-column: auto !important;
    transform: none !important;
    min-width: 0 !important;
  }

  .solutions-grid > .solution-card:last-child {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 700px) {
  .solutions-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .solutions-grid > .solution-card:nth-child(n) {
    grid-column: auto !important;
    transform: none !important;
    min-width: 0 !important;
  }
}
