/* =========================
   PAGE HEADER (M2 VERSION)
========================= */

.page-header{
  position:relative;
  height:600px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;

  background:
    radial-gradient(ellipse at 50% 0%, rgba(239,130,32,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(239,130,32,0.06), transparent 50%),
    linear-gradient(135deg,#0d0d0d 0%,#1a1a2e 50%,#111 100%);
  margin-top:var(--navbar-height);
}

/* GLOW ORBS */
.header-glow-g{
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,130,32,0.1),transparent 70%);
  top:-120px;
  left:-100px;
  animation:glowDrift 8s ease-in-out infinite alternate;
  pointer-events:none;
}

.header-glow-o{
  position:absolute;
  width:400px;
  height:400px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(239,130,32,0.07),transparent 70%);
  bottom:-80px;
  right:-80px;
  animation:glowDrift2 10s ease-in-out infinite alternate;
  pointer-events:none;
}

@keyframes glowDrift{
  0%{transform:translate(0,0) scale(1);}
  100%{transform:translate(60px,40px) scale(1.15);}
}

@keyframes glowDrift2{
  0%{transform:translate(0,0) scale(1);}
  100%{transform:translate(-40px,-30px) scale(1.2);}
}

@keyframes headerPulse{
  0%{opacity:.5;}
  100%{opacity:1;}
}

/* GRID OVERLAY */
.header-grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
  z-index:1;
  animation:gridFade 6s ease-in-out infinite alternate;
}

@keyframes gridFade{
  0%{opacity:0.4;}
  100%{opacity:0.8;}
}

.page-header-content{
  position:relative;
  z-index:3;
  max-width:800px;
  padding:0 20px;
}

.page-header h1{
  font-size:52px;
  margin-bottom:16px;
  color:#fff;
  line-height:1.15;
}

.page-header h1 .accent{
  -webkit-text-fill-color:initial;
  background:none;
  color:var(--primary);
}

.page-header p{
  font-size:17px;
  color:rgba(255,255,255,0.6);
  max-width:640px;
  margin:0 auto 32px;
  line-height:1.6;
}

/* HIGHLIGHT */
.highlight{
  color:var(--primary);
  font-weight:600;
}

/* CANVAS BACKGROUND */
#robotics-bg{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:1;
  pointer-events:none;
  opacity:.6;
}

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

.hero-buttons{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:15px;
}

.btn{
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:500;
  transition:.3s;
}

/* PRIMARY */
.btn.primary{
  background:var(--primary);
  color:#fff;
}

.btn.primary:hover{
  box-shadow:0 0 25px rgba(250,94,58,0.6);
  transform:translateY(-3px);
}

/* SECONDARY (CORREGIDO) */
.btn.secondary{
  border:1px solid var(--primary);
  color:var(--primary);
}

.btn.secondary:hover{
  background:rgba(250,94,58,0.1);
}

/* =========================
   SECTIONS
========================= */

.section{
  padding:120px 8%;
  max-width:1400px;
  margin:auto;
}

.section:nth-child(even){
  background:linear-gradient(180deg,#f8f9fc,#fff);
  border-radius:40px;
  margin:20px auto;
  padding:120px 8%;
}

.section.dark{
  background:#0d0d0d;
  color:#eee;
}

.section.dark p{
  color:#aaa;
}

.how-section{
  max-width:1200px;
  margin:auto;
  padding:100px 6%;
}

.how-section .section-title{
  text-align:center;
}

/* STAGGERED ENTRANCE - HOW CARDS */
.how-card{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}
.section.show .how-card{
  opacity:1;
  transform:translateY(0);
}
.section.show .how-card:nth-child(1){transition-delay:0.05s}
.section.show .how-card:nth-child(2){transition-delay:0.15s}
.section.show .how-card:nth-child(3){transition-delay:0.25s}
.section.show .how-card:nth-child(4){transition-delay:0.35s}

.center{
  text-align:center;
  max-width:800px;
  margin:auto;
}

.subtitle{
  margin-top:15px;
  color:#888;
}

/* =========================
   CARDS (UPGRADE)
========================= */

.card{
  padding:30px;
  border-radius:20px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  backdrop-filter:blur(8px);
  transition:.4s;
  position:relative;
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(250,94,58,0.2), transparent);
  opacity:0;
  transition:.4s;
}

.card:hover::before{
  opacity:1;
}

.card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
}

/* =========================
   GRID 3
========================= */

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

/* =========================
   HIGHLIGHT BOX
========================= */

.highlight-box{
  background:#111;
  padding:30px;
  border-radius:16px;
  border:1px solid rgba(250,94,58,0.2);
  box-shadow:0 0 25px rgba(250,94,58,0.1);
}

.highlight-box h3{
  margin-bottom:15px;
}

/* =========================
   CHECK LIST
========================= */

.check-list{
  margin-top:20px;
  list-style:none;
}

.check-list li{
  margin-bottom:10px;
  position:relative;
  padding-left:20px;
}

.check-list li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--primary);
}

/* =========================
   STEPS
========================= */

.steps{
  display:flex;
  gap:40px;
  margin-top:60px;
  flex-wrap:wrap;
}

.step{
  flex:1;
  min-width:250px;
}

.step span{
  font-size:32px;
  color:var(--primary);
  font-weight:bold;
}

.step h3{
  margin:10px 0;
}

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

.benefits .card{
  text-align:center;
}

/* =========================
   STATS
========================= */

.stats{
  display:flex;
  gap:40px;
  align-items:center;
  justify-content:center;
}

.stats h3{
  font-size:40px;
  color:var(--primary);
}

/* =========================
   CTA
========================= */

.cta{
  text-align:center;
  background:linear-gradient(135deg,#0d0d0d 0%,#16213e 50%,#111 100%);
  padding:100px 8%;
  color:#fff;
  position:relative;
  overflow:hidden;
  max-width:100%;
  width:100%;
  margin:0;
  border-radius:0;
}

.cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(ellipse at 50% 50%, rgba(239,130,32,0.1), transparent 60%);
  animation:ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow{
  0%{opacity:.5;}
  100%{opacity:1;}
}

.cta h2,
.cta p,
.cta .btn-primary{
  position:relative;
  z-index:1;
}

.cta h2{
  margin-bottom:20px;
}

.cta p{
  color:rgba(255,255,255,0.7);
}

.cta .btn-primary{
  box-shadow:0 0 20px rgba(239,130,32,0.3);
  animation:pulse 2s ease-in-out infinite;
}

@keyframes pulse{
  0%,100%{box-shadow:0 0 20px rgba(239,130,32,0.3);}
  50%{box-shadow:0 0 40px rgba(239,130,32,0.6);}
}

.cta .btn-primary:hover{
  animation:none;
}

/* =========================
   IMAGE PLACEHOLDER
========================= */

.image-placeholder{
  width:100%;
  height:300px;
  border-radius:20px;
  background:linear-gradient(135deg, #222, #111);
  position:relative;
  overflow:hidden;
}

.image-placeholder::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(250,94,58,0.3), transparent);
  animation:shine 3s infinite;
}

@keyframes shine{
  0%{transform:translateX(-100%);}
  100%{transform:translateX(100%);}
}

/* =========================
   VIDEO THUMBNAIL
========================= */

.video-thumbnail{
  position:relative;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:16/9;
}

.video-thumbnail img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.4s;
}

.video-thumbnail::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  transition:.3s;
}

/* hover */
.video-thumbnail:hover img{
  transform:scale(1.05);
}

.video-thumbnail:hover::after{
  background:rgba(0,0,0,0.5);
}

/* botón play */
.play-button{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:40px;
  color:white;

  width:80px;
  height:80px;
  border-radius:50%;
  background:rgba(250,94,58,0.9);

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:0 0 25px rgba(250,94,58,0.6);
  transition:.3s;
}

.video-thumbnail:hover .play-button{
  transform:translate(-50%,-50%) scale(1.1);
}

/* =========================
   MODAL VIDEO
========================= */

.close-video{
  position:absolute;
  top:-40px;
  right:0;
  font-size:28px;
  color:white;
  cursor:pointer;
}

@media(min-width:900px){

  .grid-2{
    align-items:center;
  }

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

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

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

  .hero-buttons{
    flex-direction:column;
  }

  .steps{
    flex-direction:column;
  }

  .stats{
    flex-direction:column;
  }

  .page-header h1{
    font-size:32px;
  }

}
/* =========================
   TTP SECTION
========================= */
.m2-ttp-section{
  padding:120px 6%;
  max-width:1300px;
  margin:auto;
  background:linear-gradient(180deg,#f8f9fc,#fff);
  border-radius:40px;
}

/* OVERLINE + ACCENT */
.m2-ttp-section .section-overline{
  display:inline-block;
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
  padding:5px 16px;
  border-radius:6px;
  font-weight:700;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:14px;
}

/* STAGGERED REVEAL */
.ttp-grid .ttp-card{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}
.section.show .ttp-grid .ttp-card{
  opacity:1;
  transform:translateY(0);
}
.section.show .ttp-grid .ttp-card:nth-child(1){transition-delay:0.05s}
.section.show .ttp-grid .ttp-card:nth-child(2){transition-delay:0.2s}

.ttp-stations{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}
.section.show .ttp-stations{
  opacity:1;
  transform:translateY(0);
  transition-delay:0.35s;
}

/* GRID */
.ttp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:50px;
}

/* CARD */
.ttp-card{
  display:flex;
  background:#fff;
  border-radius:20px;
  box-shadow:0 4px 20px rgba(0,0,0,0.04);
  transition:all .4s ease;
  overflow:hidden;
}

.ttp-card:hover{
  box-shadow:0 12px 40px rgba(239,130,32,0.12);
  transform:translateY(-4px);
}

.ttp-card-brand{
  width:4px;
  flex-shrink:0;
  background:linear-gradient(180deg,var(--primary),#ff9a3c);
}

.ttp-card-body{
  flex:1;
  padding:28px 28px 24px;
}

/* BADGE */
.ttp-badge{
  display:inline-block;
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
  padding:6px 14px;
  border-radius:8px;
  font-weight:600;
  margin-bottom:18px;
  font-size:13px;
  letter-spacing:.4px;
}

.ttp-badge.center{
  display:block;
  width:fit-content;
  margin:0 auto 50px;
}

/* IMAGES */
.ttp-images{
  display:flex;
  gap:10px;
  margin-bottom:24px;
}

.ttp-img-wrap{
  width:32%;
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.04);
  transition:all .35s ease;
  position:relative;
}

.ttp-img-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:12px;
  border:2px solid transparent;
  transition:all .35s ease;
  pointer-events:none;
}

.ttp-img-wrap:hover{
  border-color:rgba(239,130,32,0.2);
}

.ttp-img-wrap:hover::after{
  border-color:var(--primary);
  transform:scale(0.94);
}

.ttp-img-wrap img{
  width:100%;
  height:140px;
  object-fit:contain;
  background:#fafafa;
  padding:8px;
  display:block;
  transition:all .4s ease;
}

.ttp-img-wrap:hover img{
  transform:scale(1.08);
}

/* TABLE */
.ttp-table{
  margin-top:4px;
}

.ttp-table div{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 14px;
  border-bottom:1px solid rgba(0,0,0,0.04);
  transition:background .25s ease;
  border-radius:8px;
}

.ttp-table div:hover{
  background:rgba(239,130,32,0.04);
}

.ttp-table div:last-child{
  border-bottom:none;
}

.ttp-table span{
  color:var(--gray);
  font-weight:500;
  font-size:13px;
  display:flex;
  align-items:center;
  gap:8px;
}

.ttp-table .spec-icon{
  width:15px;
  height:15px;
  color:var(--primary);
  flex-shrink:0;
}

.ttp-table p{
  margin:0;
  font-weight:600;
  color:var(--text);
  font-size:14px;
}

.ttp-table .spec-highlight{
  display:inline-block;
  background:linear-gradient(135deg,rgba(239,130,32,0.1),rgba(255,154,60,0.05));
  color:var(--primary);
  font-weight:700;
  padding:3px 14px;
  border-radius:8px;
  font-size:14px;
}

.ttp-table .spec-unit{
  font-weight:400;
  color:var(--gray);
  font-size:12px;
  margin-left:4px;
}

/* STATIONS */
.ttp-stations{
  margin-top:110px;
}

.ttp-stations-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.station{
  text-align:center;
  background:#fff;
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  padding:18px 18px 22px;
  transition:all .35s ease;
  box-shadow:0 4px 16px rgba(0,0,0,0.04);
  width:280px;
  position:relative;
  overflow:hidden;
}

.station::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg,var(--primary),#ff9a3c);
  opacity:0;
  transition:opacity .35s ease;
}

.station:hover::before{
  opacity:1;
}

.station:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(239,130,32,0.12);
}

.station-img-wrap{
  border-radius:14px;
  overflow:hidden;
  margin-bottom:14px;
  background:#fafafa;
}

.station-img-wrap img{
  width:100%;
  height:170px;
  object-fit:contain;
  transition:.4s ease;
  display:block;
  padding:14px;
}

.station:hover .station-img-wrap img{
  transform:scale(1.06);
}

.station p{
  font-weight:700;
  color:var(--text);
  font-size:14px;
  margin:0;
  letter-spacing:.2px;
  position:relative;
  display:inline-block;
  padding-bottom:4px;
}

.station p::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:20px;
  height:2px;
  background:var(--primary);
  border-radius:2px;
  transition:width .3s ease;
}

.station:hover p::after{
  width:40px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px){
  .ttp-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .ttp-card-body{
    padding:22px 20px 18px;
  }

  .ttp-badge{
    display:block;
    width:fit-content;
    margin:0 auto 18px;
    font-size:12px;
  }

  .ttp-images{
    flex-wrap:wrap;
    gap:8px;
    justify-content:center;
  }

  .ttp-img-wrap{
    width:calc(32% - 6px);
  }

  .ttp-img-wrap img{
    height:130px;
  }

  .ttp-table div{
    flex-direction:column;
    align-items:flex-start;
    padding:8px 10px;
    gap:2px;
  }

  .ttp-table span{
    font-size:12px;
  }

  .ttp-table p{
    font-size:13px;
  }

  .ttp-table .spec-highlight{
    font-size:13px;
    padding:2px 12px;
  }
}

@media (max-width: 768px){
  .m2-ttp-section{
    padding:80px 5%;
  }

  .ttp-grid{
    gap:20px;
  }

  .ttp-card-body{
    padding:18px 16px 16px;
  }

  .ttp-img-wrap{
    width:calc(48% - 5px);
  }

  .ttp-img-wrap img{
    height:110px;
  }

  .ttp-table div{
    padding:6px 8px;
  }

  .station{
    width:200px;
    padding:16px 14px;
  }

  .station-img-wrap img{
    height:150px;
    padding:12px;
  }

  .station p{
    font-size:13px;
  }
}

@media (max-width: 480px){
  .m2-ttp-section{
    padding:60px 4%;
  }

  .ttp-img-wrap{
    width:calc(90% - 4px);
  }

  .ttp-img-wrap img{
    height:100px;
  }

  .ttp-table span{
    font-size:12px;
  }

  .ttp-table p{
    font-size:12px;
  }

  .ttp-stations-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .station{
    width:100%;
    max-width:300px;
  }

  .station-img-wrap img{
    height:180px;
    padding:16px;
  }

  .station p{
    font-size:13px;
  }

  .ttp-table .spec-highlight{
    font-size:12px;
    padding:2px 10px;
  }
}

/* =========================
   BUILT SECTION
========================= */
.m2-built-section{
  padding:100px 0;
  background:linear-gradient(180deg,#fff,#f8f9fc);
}

.m2-built-section .section-overline{
  display:inline-block;
  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;
  padding:5px 16px;
  border-radius:6px;
  font-weight:700;
  font-size:11px;
  letter-spacing:1.2px;
  text-transform:uppercase;
  margin-bottom:12px;
}

.built-grid{
  align-items:center;
  gap:64px;
}

.built-image{
  position:relative;
}

.built-img-wrap{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.06);
  transition:box-shadow .4s ease;
}

.built-img-wrap:hover{
  box-shadow:0 16px 50px rgba(239,130,32,0.15);
}

.built-img-wrap img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transition:transform .6s cubic-bezier(.25,.46,.45,.94);
}

.built-img-wrap:hover img{
  transform:scale(1.06);
}

.built-img-glow{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(239,130,32,0),rgba(239,130,32,0.06));
  opacity:0;
  transition:opacity .5s ease;
  pointer-events:none;
}

.built-img-wrap:hover .built-img-glow{
  opacity:1;
}

.built-content{
  padding-right:20px;
}

.built-content .section-title.left{
  text-align:left;
  margin-bottom:24px;
}

.built-content .text{
  color:var(--gray);
  line-height:1.7;
  font-size:15px;
}

.built-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.built-feat{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.06);
  padding:10px 18px;
  border-radius:12px;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  transition:all .3s ease;
  box-shadow:0 2px 8px rgba(0,0,0,0.03);
}

.built-feat:hover{
  border-color:rgba(239,130,32,0.3);
  box-shadow:0 6px 20px rgba(239,130,32,0.1);
  transform:translateY(-2px);
}

.built-feat-icon{
  width:18px;
  height:18px;
  color:var(--primary);
  flex-shrink:0;
}

@media(max-width:900px){
  .built-grid{
    gap:40px;
  }

  .built-img-wrap img{
    height:280px;
  }

  .built-content{
    padding-right:0;
  }

  .built-content .section-title.left{
    font-size:28px;
  }
}

@media(max-width:480px){
  .m2-built-section{
    padding:60px 0;
  }

  .built-img-wrap img{
    height:200px;
  }

  .built-features{
    flex-direction:column;
  }

  .built-feat{
    width:100%;
  }
}

/* =========================
   HOW IT WORKS (M2 STYLE)
========================= */

.how-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px 48px;
  margin-top:60px;
  position:relative;
}

/* CARD */
.how-card{
  position:relative;
  padding:30px;
  overflow:hidden;
  transition:all .5s cubic-bezier(.2,.8,.2,1);
  z-index:1;
}

/* NUMBER */
.how-number{
  position:absolute;
  top:20px;
  right:20px;
  font-size:56px;
  font-weight:800;
  color:rgba(239,130,32,0.08);
  transition:color .4s ease,transform .4s ease;
  line-height:1;
}

.how-card:hover .how-number{
  color:rgba(239,130,32,0.25);
  transform:scale(1.1);
}

/* SEQUENTIAL NUMBER PULSE */
.how-card[data-step="1"] .how-number{
  animation:numPulse 4s ease-in-out infinite;
  animation-delay:0s;
}

.how-card[data-step="2"] .how-number{
  animation:numPulse 4s ease-in-out infinite;
  animation-delay:1s;
}

.how-card[data-step="3"] .how-number{
  animation:numPulse 4s ease-in-out infinite;
  animation-delay:2s;
}

.how-card[data-step="4"] .how-number{
  animation:numPulse 4s ease-in-out infinite;
  animation-delay:3s;
}

@keyframes numPulse{
  0%,100%{color:rgba(239,130,32,0.08);transform:scale(1);}
  10%{color:rgba(239,130,32,0.6);transform:scale(1.15);}
  25%{color:rgba(239,130,32,0.08);transform:scale(1);}
}

/* TITLE */
.how-card h3{
  margin-bottom:10px;
  font-size:20px;
}

/* TEXT */
.how-card .text{
  color:var(--gray);
  line-height:1.6;
}

/* HOVER */
.how-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ======================
   FLOW TRACK
====================== */

.how-flow-track{
  position:absolute;
  top:50%;
  left:6%;
  width:88%;
  height:1px;
  background:linear-gradient(to right, transparent, rgba(239,130,32,0.1), transparent);
  transform:translateY(-50%);
  pointer-events:none;
  z-index:0;
}

.how-flow-track::after{
  content:"";
  position:absolute;
  top:50%;
  left:-8px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--primary);
  transform:translateY(-50%);
  animation:flowDot 4s ease-in-out infinite;
}

@keyframes flowDot{
  0%{left:-8px;opacity:0;}
  12%{opacity:0.6;}
  88%{opacity:0.6;}
  100%{left:calc(100% + 8px);opacity:0;}
}

/* STAGGERED ENTRANCE */
.how-card{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}

.section.show .how-card{
  opacity:1;
  transform:translateY(0);
}

.section.show .how-card:nth-child(1){transition-delay:0.05s}
.section.show .how-card:nth-child(2){transition-delay:0.15s}
.section.show .how-card:nth-child(3){transition-delay:0.25s}
.section.show .how-card:nth-child(4){transition-delay:0.35s}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

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

  .how-arrow{
    display:none;
  }

  .how-flow-track{
    display:none;
  }

}

/* ICON CONTAINER */
.how-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:16px;

  background:linear-gradient(135deg,var(--primary),#ff9a3c);
  color:#fff;

  box-shadow:0 10px 20px rgba(239,130,32,0.25);
  transition:.3s ease;
}

/* ICON SIZE */
.how-icon svg{
  width:22px;
  height:22px;
}

/* HOVER EFFECT */
.how-card:hover .how-icon{
  transform:scale(1.1) rotate(5deg);
  box-shadow:0 15px 30px rgba(239,130,32,0.35);
}

/* =========================
   T2P WHAT IS TEXT BLOCK
========================= */

.t2p-what-text{
  position:relative;
}

.t2p-what-overline{
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color:var(--primary);
  background:rgba(239,130,32,0.1);
  padding:6px 14px;
  border-radius:100px;
  margin-bottom:16px;
}

.t2p-what-text .section-title{
  margin-bottom:24px;
}

.t2p-what-text .text{
  font-size:1.02rem;
  line-height:1.9;
  color:var(--text);
  text-align:left;
}

.t2p-tag{
  display:inline-block;
  background:linear-gradient(135deg,rgba(239,130,32,0.1),rgba(250,94,58,0.06));
  color:var(--primary);
  font-weight:600;
  padding:2px 10px;
  border-radius:6px;
  font-size:0.95em;
  transition:all .3s ease;
}

.t2p-tag:hover{
  background:var(--primary);
  color:#fff;
  transform:translateY(-2px);
}

.t2p-what-highlight{
  position:relative;
  padding-left:20px;
  margin-top:24px;
  border-left:3px solid var(--primary);
  color:#444 !important;
  font-style:italic;
}

.t2p-what-stats{
  display:flex;
  gap:20px;
  margin-top:32px;
  padding-top:24px;
  border-top:1px solid rgba(0,0,0,0.06);
}

.t2p-what-stat{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.t2p-what-stat-value{
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:var(--primary);
}

.t2p-what-stat-label{
  font-size:12px;
  color:var(--gray);
  font-weight:500;
}

.t2p-what-stat-divider{
  width:1px;
  background:rgba(0,0,0,0.08);
}

/* =========================
   HEADER RESPONSIVE
========================= */
@media(max-width:900px){
  .page-header{
    height:520px;
  }

  .page-header h1{
    font-size:36px;
  }

  .page-header p{
    font-size:15px;
    padding:0 10px;
  }

  .header-grid{
    background-size:40px 40px;
  }
}

@media(max-width:600px){
  .page-header{
    height:auto;
    min-height:480px;
    padding:80px 0 60px;
  }

  .page-header h1{
    font-size:28px;
  }

  .page-header p{
    font-size:14px;
  }

  .header-glow-g,
  .header-glow-o{
    width:250px;
    height:250px;
  }
}

@media(max-width:900px){
  .t2p-what-stats{
    flex-wrap:wrap;
  }

  .t2p-what-stat-divider{
    display:none;
  }
}