/* consultoria-asistencia.html */

.hero{
      position:relative;overflow:hidden;padding:6.5rem 0 5rem;
      background:linear-gradient(135deg,var(--dark),var(--dark-blue),var(--primary));
      color:var(--white)
    }
    .hero::before{
      content:"";position:absolute;inset:0;
      background:
        radial-gradient(circle at top right,rgba(111,163,240,.38),transparent 34%),
        linear-gradient(rgba(10,15,30,.62),rgba(10,15,30,.68));
      opacity:.9;pointer-events:none;
    }

    .hero-grid{
      position:relative;z-index:1;
      display:grid;grid-template-columns:1.05fr .95fr;
      gap:3rem;align-items:center
    }

    .eyebrow{
      display:inline-flex;background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;padding:.5rem 1rem;
      font-size:.85rem;margin-bottom:1.5rem
    }

    h1{
      font-family:var(--font-display);
      font-size:clamp(2.6rem,5.8vw,5rem);
      line-height:1.05;margin-bottom:1.3rem
    }

    .hero p{
      font-size:1.06rem;line-height:1.8;
      color:rgba(255,255,255,.86);max-width:690px
    }

    .hero-actions{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2rem}
    .hero-card{
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(18px);
      border-radius:30px;
      padding:2rem;
      box-shadow:0 20px 60px rgba(0,0,0,.22);
    }

    .hero-card h3{font-size:1.5rem;margin-bottom:1rem}
    .hero-card ul{list-style:none;display:grid;gap:.9rem;color:rgba(255,255,255,.78);line-height:1.6}

    .section{padding:5.5rem 0}
    .section--soft{background:var(--bg-2)}
    .section--dark{background:var(--dark);color:var(--white)}
    .section-header{margin-bottom:2.4rem}
    .section-tag{
      display:inline-flex;padding:.5rem 1rem;border-radius:999px;
      background:var(--primary-pale);color:var(--primary);
      font-size:.82rem;font-weight:800;margin-bottom:1rem
    }
    .section--dark .section-tag{background:rgba(255,255,255,.1);color:var(--white)}
    .section-title{
      font-family:var(--font-display);
      font-size:clamp(2rem,4vw,3.35rem);
      margin-bottom:1rem;max-width:940px
    }
    .section-subtitle{max-width:820px;color:var(--muted);line-height:1.8}
    .section--dark .section-subtitle{color:rgba(255,255,255,.75)}

    .service-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:1.5rem;
    }

    .service-card{
      background:var(--white);
      border:1px solid var(--border);
      border-radius:32px;
      padding:2rem;
      box-shadow:var(--shadow);
      transition:.3s;
    }

    .service-card:hover{transform:translateY(-6px)}
    .service-card h3{font-size:1.35rem;margin-bottom:1rem}
    .service-card p{color:var(--muted);line-height:1.75;margin-bottom:1.2rem}

    .service-list{
      list-style:none;
      display:grid;
      gap:.7rem;
      margin-top:1.2rem;
    }

    .service-list li{
      padding:.75rem .9rem;
      border-radius:16px;
      background:var(--bg);
      color:var(--muted);
      font-weight:700;
      font-size:.92rem;
    }

    .featured-service{
      grid-column:span 1;
      display:flex;
      flex-direction:column;
      background:linear-gradient(135deg,rgba(10,15,30,.96),rgba(27,79,168,.88));
      color:var(--white);
    }

    .featured-service p{color:rgba(255,255,255,.76)}
    .featured-service .service-list li{
      background:rgba(255,255,255,.1);
      color:rgba(255,255,255,.82);
      border:1px solid rgba(255,255,255,.1);
    }

    .split-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:3rem;
      align-items:center;
    }

    .image-frame{
      min-height:500px;
      border-radius:34px;
      overflow:hidden;
      background:linear-gradient(rgba(10,15,30,.08),rgba(10,15,30,.25));
      box-shadow:var(--shadow);
      border:1px solid var(--border);
    }

    .text-stack{display:grid;gap:1rem}
    .text-stack p{color:var(--muted);line-height:1.85}

    .method-timeline{
      display:grid;
      gap:1rem;
      position:relative;
    }

    .method-step{
      display:grid;
      grid-template-columns:90px 1fr;
      gap:1.5rem;
      align-items:start;
      background:var(--white);
      border:1px solid var(--border);
      border-radius:26px;
      padding:1.5rem;
      box-shadow:0 12px 35px rgba(10,15,30,.08);
    }

    .method-number{
      width:70px;
      height:70px;
      border-radius:999px;
      background:var(--primary);
      color:var(--white);
      display:flex;
      align-items:center;
      justify-content:center;
      font-family:var(--font-display);
      font-size:1.6rem;
      font-weight:700;
    }

    .method-step h3{
      font-size:1.15rem;
      margin-bottom:.4rem;
    }

    .method-step p{
      color:var(--muted);
      line-height:1.6;
    }

    .sector-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:1rem;
    }

    .sector-card{
      background:var(--white);
      border:1px solid var(--border);
      border-radius:28px;
      padding:1.6rem;
      box-shadow:var(--shadow);
    }

    .sector-card h3{font-size:1.15rem;margin-bottom:1rem;color:var(--primary)}
    .sector-card ul{list-style:none;display:grid;gap:.55rem;color:var(--muted);line-height:1.5}

    .arket-block{
      background:var(--white);
      border:1px solid var(--border);
      border-radius:34px;
      padding:2.5rem;
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:2rem;
      align-items:center;
    }

    .logo-row{
      display:flex;
      flex-wrap:wrap;
      gap:1rem;
      align-items:center;
      margin:1.5rem 0;
    }

    .logo-box{
      min-width:160px;
      min-height:72px;
      padding:1rem;
      border-radius:22px;
      border:1px solid var(--border);
      background:var(--bg);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      color:var(--primary);
    }

    .logo-x{
      font-size:1.5rem;
      font-weight:900;
      color:var(--muted);
    }

    .arket-list{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:.8rem;
      list-style:none;
    }

    .arket-list li{
      padding:.85rem 1rem;
      background:var(--primary-pale);
      color:var(--primary);
      border-radius:18px;
      font-weight:800;
      font-size:.9rem;
    }

    .implementation-card{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:36px;
  padding:2.5rem;
  box-shadow:var(--shadow);
}

.implementation-flow{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:2rem;
  align-items:center;
}

.flow-block{
  padding:2rem;
  border-radius:28px;
  background:var(--bg);
}

.flow-block h3{
  font-family:var(--font-display);
  font-size:2rem;
  margin-bottom:1.2rem;
}

.flow-block ul{
  list-style:none;
  display:grid;
  gap:.8rem;
}

.flow-block li{
  padding:.8rem 1rem;
  background:var(--white);
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
}

.flow-arrow{
  font-size:3rem;
  color:var(--primary);
  font-weight:900;
}

.flow-block-dark{
  background:linear-gradient(
    135deg,
    rgba(10,15,30,.96),
    rgba(27,79,168,.9)
  );
  color:var(--white);
}

.flow-block-dark li{
  background:rgba(255,255,255,.1);
  color:rgba(255,255,255,.9);
}

.ally-badge{
  display:inline-flex;
  padding:.45rem .9rem;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  margin-bottom:1rem;
  font-size:.8rem;
  font-weight:800;
}

.implementation-footer{
  margin-top:2rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:2rem;
}

.implementation-footer p{
  max-width:700px;
  color:var(--muted);
  line-height:1.8;
}

@media(max-width:980px){

  .implementation-flow{
    grid-template-columns:1fr;
  }

  .flow-arrow{
    transform:rotate(90deg);
    text-align:center;
  }

  .implementation-footer{
    flex-direction:column;
    align-items:flex-start;
  }
}

    @media(max-width:980px){
      .hero-grid,
      .split-grid,
      .featured-service,
      .arket-block{
        grid-template-columns:1fr;
      }

      .service-grid,
      .method-grid,
      .sector-grid{
        grid-template-columns:1fr 1fr;
      }
    }

    @media(max-width:640px){
      .hero{padding-top:5.3rem}
      h1{font-size:2.35rem}
      .hero-actions{flex-direction:column}
      .btn{width:100%}
      .service-grid,
      .method-grid,
      .sector-grid,
      .arket-list{
        grid-template-columns:1fr;
      }

      .arket-block{
        padding:2rem;
      }

      .method-step{grid-template-columns:1fr;} 
    }
