.tech-cards-section{
  position:relative;
  padding:clamp(86px, 9vw, 136px) 24px;
  background:#fff;
  overflow:hidden;
}

.tech-cards-section::before{
  content:"";
  position:absolute;
  inset:auto -20% 0 -20%;
  height:56%;
  background:linear-gradient(180deg, rgba(245,245,247,0) 0%, #f5f5f7 100%);
  pointer-events:none;
}

.tech-cards-container{
  position:relative;
  max-width:1180px;
  margin:0 auto;
}

.tech-cards-header{
  max-width:820px;
  margin-bottom:44px;
}

.tech-cards-header span{
  display:inline-flex;
  margin-bottom:16px;
  padding:7px 14px;
  border-radius:999px;
  background:rgba(0,113,227,.08);
  color:#0071e3;
  border:1px solid rgba(0,113,227,.10);
  font-size:.74rem;
  font-weight:750;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.tech-cards-header h2{
  margin:0 0 20px;
  font-size:clamp(3rem, 5vw, 3rem);
  letter-spacing:-.075em;
  text-wrap:balance;
}

.tech-cards-header p{
  max-width:500px;
  margin:0;
  color:#6e6e73;
  font-size:1.08rem;
  line-height:1.68;
  text-align: justify;
}

.tech-cards-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.tech-card{
  position:relative;
  min-height:590px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  border-radius:36px;
  isolation:isolate;
  background:#030712;
  box-shadow:0 28px 90px rgba(0,0,0,.12);
  transform:translateY(24px);
  opacity:0;
  transition:transform .8s cubic-bezier(.16,1,.3,1), opacity .8s ease, box-shadow .35s ease;
}

.tech-card.is-visible{transform:translateY(0); opacity:1;}
.tech-card:hover{transform:translateY(-7px) scale(1.008); box-shadow:0 36px 120px rgba(0,0,0,.20);}

.tech-card-bg{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transform:scale(1.02);
  filter:saturate(.96) contrast(1.04);
  transition:transform .9s ease, filter .9s ease;
}

.tech-card:hover .tech-card-bg{transform:scale(1.075); filter:saturate(1.06) contrast(1.06);}

.tech-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(circle at 74% 18%, rgba(0,113,227,.28), transparent 28%),
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(3,7,18,.38) 48%, rgba(3,7,18,.95) 100%);
  pointer-events:none;
}

.tech-card::after{
  content:"";
  position:absolute;
  inset:1px;
  z-index:3;
  border-radius:35px;
  border:1px solid rgba(255,255,255,.18);
  pointer-events:none;
}

.tech-card-content{
  position:relative;
  z-index:4;
  padding:40px;
  color:#fff;
}

.tech-card-label{
  display:inline-flex;
  margin-bottom:17px;
  padding:7px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.88);
  font-size:.70rem;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  backdrop-filter:blur(16px) saturate(180%);
}

.tech-card h3{
  margin:0 0 15px;
  max-width:490px;
  color:#fff;
  font-size:clamp(2rem, 3vw, 3.35rem);
  line-height:1;
  letter-spacing:-.065em;
}

.tech-card p{
  max-width:520px;
  margin:0 0 25px;
  color:rgba(255,255,255,.76);
  font-size:1rem;
  line-height:1.62;
}

.tech-card ul{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}

.tech-card li{
  position:relative;
  padding-left:24px;
  color:rgba(255,255,255,.9);
  font-size:.94rem;
  line-height:1.45;
}

.tech-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:.58em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 18px rgba(255,255,255,.75);
}

@media (max-width: 900px){
  .tech-cards-section{padding:76px 20px;}
  .tech-cards-grid{grid-template-columns:1fr;}
  .tech-card{min-height:520px;}
}

@media (max-width: 560px){
  .tech-card{min-height:500px; border-radius:28px;}
  .tech-card::after{border-radius:27px;}
  .tech-card-content{padding:28px;}
}
