/* =============================
   BASE
============================= */

.container{
  max-width:1200px;
  margin:auto;
  padding:0 6%;
}

.section{
  padding:120px 0;
}

/* STAGGERED ENTRANCE - TECH BENEFIT CARDS */
.section:not(.show) .tech-card{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1);
}
.section.show .tech-card{
  opacity:1;
  transform:translateY(0);
}
.section.show .tech-card:nth-child(1){transition-delay:0.04s}
.section.show .tech-card:nth-child(2){transition-delay:0.08s}
.section.show .tech-card:nth-child(3){transition-delay:0.12s}
.section.show .tech-card:nth-child(4){transition-delay:0.16s}
.section.show .tech-card:nth-child(5){transition-delay:0.2s}
.section.show .tech-card:nth-child(6){transition-delay:0.24s}
.section.show .tech-card:nth-child(7){transition-delay:0.28s}
.section.show .tech-card:nth-child(8){transition-delay:0.32s}

/* SLIDE-IN - AI SECTIONS */
.content-box .text-box,
.content-box .media-box{
  opacity:0;
  transition:all .8s ease;
}
.content-box .text-box{
  transform:translateX(-40px);
}
.content-box .media-box{
  transform:translateX(40px);
}
.content-box.right-text .text-box{
  transform:translateX(40px);
}
.content-box.right-text .media-box{
  transform:translateX(-40px);
}
.section.show .content-box .text-box,
.section.show .content-box .media-box{
  opacity:1;
  transform:translateX(0);
}

/* STAGGERED ENTRANCE - TECH FEATURES */
.tech-feature{
  opacity:0;
  transform:translateY(30px);
  transition:all .6s ease;
}
.section.show .tech-feature{
  opacity:1;
  transform:translateY(0);
}
.tech-features .tech-feature:nth-child(3){transition-delay:0.05s}
.tech-features .tech-feature:nth-child(4){transition-delay:0.15s}
.tech-features .tech-feature:nth-child(5){transition-delay:0.25s}

/* CENTRADO REAL */
.center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* =============================
   INTRO
============================= */

.tech-intro{
  padding-top:160px;
  margin-top:var(--navbar-height);
  position:relative;
  z-index:1;
}

.tech-title{
  font-size:56px;
  line-height:1.1;
  max-width:900px;
  color:#fff;
}

.tech-bg {
  background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
              url("../images/tech-bnr.png") center/cover no-repeat;
}

.glow{
  text-shadow:0 0 25px rgba(250,94,58,0.4);
  animation:glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse{
  50%{text-shadow:0 0 45px rgba(250,94,58,0.7);}
}

.tech-subtitle{
  margin-top:25px;
  color:#ddd;
  max-width:650px;
}

.tech-divider{
  width:70px;
  height:3px;
  background:var(--primary);
  margin:30px auto;
}

.tech-tags{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

/* TAG BASE */
.tech-tags span{
  position:relative;
  padding:10px 18px;
  border-radius:999px;
  background:rgba(0,0,0,0.04);
  font-size:13px;
  font-weight:500;
  cursor:pointer;
  overflow:hidden;
  transition:all .3s ease;
}

.tech-tags span::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
}

.tech-tags span::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:999px;
  background:radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(250,94,58,0.35), transparent 60%);
  opacity:0;
  transition:opacity .3s ease;
}

/* HOVER */
.tech-tags span:hover{
  transform:translateY(-3px) scale(1.05);
  color:var(--primary);
}

.tech-tags span:hover::after{
  opacity:1;
}

/* =============================
   GRID BG PARALLAX
============================= */

.tech-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-size:40px 40px;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  animation:gridMove 20s linear infinite;
  pointer-events:none;
  z-index:0;
}

/* =============================
   SPLIT
============================= */

.tech-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  justify-items:center;
}

.alt-layout{
  grid-template-areas:"visual text";
}

.alt-layout .tech-visual{grid-area:visual;}
.alt-layout .tech-text{grid-area:text;}

/* =============================
   TEXT
============================= */

.tech-text{
  max-width:520px;
}

.tech-text p{
  margin-bottom:20px;
  line-height:1.8;
  color:var(--gray);
}

/* =============================
   AI VISUAL
============================= */

.tech-visual{
  padding:50px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.ai-core{
  font-size:60px;
  margin:20px 0;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

.ai-core::after{
  content:"";
  position:absolute;
  width:120px;
  height:120px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(250,94,58,0.4), transparent 70%);
  animation:aiPulse 2.5s infinite;
  z-index:-1;
}

@keyframes aiPulse{
  0%{transform:scale(0.8);opacity:.6;}
  50%{transform:scale(1.2);opacity:1;}
  100%{transform:scale(0.8);opacity:.6;}
}

/* =============================
   FLOW (DATA ANIMATION)
============================= */

.tech-architecture{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.tech-flow{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:40px;
}

.flow-node{
  padding:12px 20px;
  border-radius:12px;
  background:#f2f2f2;
  font-size:14px;
}

.flow-node.core{
  background:var(--primary);
  color:white;
}

.flow-line{
  width:50px;
  height:2px;
  background:#ddd;
  position:relative;
  overflow:hidden;
}

/* DATA FLOW */
.flow-line::after{
  content:"";
  position:absolute;
  left:-50%;
  width:50%;
  height:100%;
  background:linear-gradient(90deg, transparent, var(--primary), transparent);
  animation:dataFlow 1.5s linear infinite;
}

/* =============================
   OVERLINE GLOBAL
============================= */
.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;
}

/* =============================
   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;
}

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

@media(max-width:1100px){

  .tech-split{
    grid-template-columns:1fr;
  }

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

}

/* =============================
   ARCHITECTURE SECTION
============================= */
:root{
  --radius: 190px;
}

.arch-stage{
  position:relative;
  height:700px;
  margin-top:80px;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 180px 1fr 180px;
  padding-bottom:auto;
  perspective: 1200px;
}

.arch-stage.dim .arch-node:not(.active),
.arch-stage.dim .arch-chip:not(.active),
.arch-stage.dim .arch-mini:not(.active){
  opacity:.2;
  filter:blur(1px);
}

.arch-stage.dim .active{
  opacity:1 !important;
  filter:none !important;
}

/* CORE */
.arch-core{
  position:absolute;
  top:50%;
  left:50%;
  border-radius:20px;
  transform:translate(-50%, -50%);
}

.arch-core-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  
  padding:30px 40px;
  border-radius:20px;


  border:1px solid rgba(239,130,32,0.3);

  backdrop-filter:blur(20px);

  box-shadow:0 0 60px rgba(239,130,32,0.25);

  animation:coreBreath 4s ease-in-out infinite;
  position:relative;
  overflow:hidden;
}

.arch-core-inner::after{
  content:"";
  position:absolute;
  inset:0;


  opacity:.6;

}


.arch-core i{
  width:32px;
  height:32px;
}

.arch-core:hover{
  transform:translate(-50%, -50%) scale(1.05);
}

.arch-core.active{
  box-shadow:
    0 0 80px rgba(239,130,32,0.35),
    0 0 120px rgba(239,130,32,0.2);
  
  transform:translate(-50%, -50%) scale(1.08);
}

/* ROWS */
.arch-row{
  position:absolute;
  display:flex;
  gap:20px;
  justify-content:center;
  width:100%;
  z-index:60
}

.arch-row.top{ 
  top:0;
  left:50%;
  transform:translateX(-50%);
  z-index:60; }
.arch-row.bottom{ bottom:40px; }

/* CHIPS */
.arch-chip{
  display:flex;
  align-items:center;
  gap:8px;

  padding:10px 16px;
  border-radius:999px;

  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);

  backdrop-filter:blur(10px);
  cursor:pointer;
  transition:.25s;
}

.arch-chip:hover{
  transform:translateY(-4px);
  border-color:var(--primary);
  color:var(--primary);
}

.arch-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:10;
  pointer-events:none;
  
}

.arch-line{
  stroke: rgba(239,130,32,0.15);
  stroke-width:1.5;
  fill:none;
  filter: blur(1px);
  transition:.3s;
  stroke-dasharray: 6 6;
  animation:lineFlow 6s linear infinite;
}

.arch-line.active{
  stroke: rgba(239,130,32,0.6);
  stroke-width:2;
  filter: blur(0.5px);
  
}

@keyframes lineFlow{
  to{
    stroke-dashoffset: -60;
  }
}

/* ORBIT */
.arch-orbit{
  position:absolute;
  top:50%;
  left:50%;
  width:520px;
  height:520px;

  transform: translate(-48%, -48%) rotate(var(--orbit-rotation));

  pointer-events:none;
  z-index:30;

  will-change: transform;
}

.arch-orbit-inner{
  width:100%;
  height:100%;

  transform: rotate(var(--r, 0deg));
  
  will-change: transform;
}

@keyframes orbitRotate{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

.arch-orbit::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;

  background:radial-gradient(circle, rgba(239,130,32,0.08), transparent 70%);
  filter:blur(20px);

  animation:orbitPulse 4s ease-in-out infinite;
}

@keyframes orbitPulse{
  0%,100%{ opacity:.4; transform:scale(0.95);}
  50%{ opacity:.8; transform:scale(1.05);}
}

/* NODES */
.arch-node{
  position:absolute;
  top:50%;
  left:50%;

  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;

  font-size:13px;
  opacity:.85;
  cursor:pointer;

  transform:
    rotate(var(--angle))
    translateX(var(--radius));

  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    opacity .3s,
    color .3s,
    filter .3s;

  pointer-events:auto;
  
}

.arch-node::after{
  content:"";
  position:absolute;
  inset:-16px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(239,130,32,0.35), transparent 60%);
  opacity:0;
  transition:opacity .4s ease, transform .4s ease;
  z-index:-1;
  transform:scale(0.8);
}

.arch-node:hover::after{
  opacity:1;
  transform:scale(1);
}

.arch-node:hover .arch-node-inner i {
  filter:drop-shadow(0 0 8px rgba(239,130,32,0.5));
}

.arch-node-inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;

  transform:rotate(calc(-1 * var(--orbit-rotation, 0deg)));
}

.arch-node:nth-child(1){ --angle: -15deg; }
.arch-node:nth-child(2){ --angle: 50deg; }
.arch-node:nth-child(3){ --angle: 130deg; }

.arch-node:nth-child(4){ --angle: 180deg; }
.arch-node:nth-child(5){ --angle: 235deg; }
.arch-node:nth-child(6){ --angle: 305deg; }

.arch-node i{
  width:22px;
  height:22px;
}

.arch-node:hover{
  transform:
    rotate(var(--angle))
    translateX(var(--radius))
    rotate(calc(var(--angle) * -1))
    scale(1.08);

  color:var(--primary);
  opacity:1;
  filter:brightness(1.2);
}

.arch-node.active{
  transform:
    rotate(var(--angle))
    translateX(var(--radius))
    rotate(calc(var(--angle) * -1))
    scale(1.12);

  color:var(--primary);
}

.arch-node.active i{
  transform:scale(1.15);
}

/* SIDES */
.arch-side{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.arch-side.left{ left:0; }
.arch-side.right{ right:0; }

/* MINI */
.arch-mini{
  display:flex;
  align-items:center;
  gap:10px;

  padding:10px 14px;
  border-radius:12px;

  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);

  font-size:13px;
  opacity:.75;
  cursor:pointer;
  backdrop-filter:blur(8px);

  transition:
    all .3s cubic-bezier(.2,.8,.2,1),
    transform .35s cubic-bezier(.2,.8,.2,1);
}

.arch-mini:hover{
  background:rgba(239,130,32,0.08);
  border-color:rgba(239,130,32,0.25);
  color:var(--primary);
  transform:translateX(6px);
  opacity:1;
}

.arch-mini i {
  width:16px;
  height:16px;
  transition:transform .3s ease;
}

.arch-mini:hover i {
  transform:scale(1.15);
}

.gm-tooltip{
  position:fixed;
  opacity:0;
  display:none;

  background:rgba(15,15,25,0.92);
  backdrop-filter:blur(16px);

  border:1px solid rgba(239,130,32,0.2);
  border-radius:12px;

  padding:14px 18px;
  min-width:200px;
  max-width:260px;

  color:#fff;
  font-size:13px;
  line-height:1.5;

  box-shadow:
    0 10px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transform:scale(0.95);
  transition:
    opacity .25s cubic-bezier(.2,.8,.2,1),
    transform .3s cubic-bezier(.2,.8,.2,1);

  pointer-events:none;
  z-index:9999;

  overflow:hidden;
}

.gm-tooltip::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, var(--primary), transparent);
  opacity:0.6;
}


.tt-title{
  font-weight:600;
  margin-bottom:6px;
  color:var(--primary);
  font-size:14px;
  letter-spacing:0.3px;
}

.tt-desc{
  opacity:.8;
  line-height:1.5;
  font-size:12.5px;
}



/* RESPONSIVE */
/* =============================
   ARCHITECTURE SECTION - MOBILE
============================= */

@media (max-width: 768px) {
  :root{
    --radius: 120px;
  }

  .arch-stage{
    height:500px;
    margin-top:40px;
    perspective:800px;
  }

  .arch-core-inner{
    padding:20px 25px;
    gap:8px;
  }

  .arch-core i{
    width:24px;
    height:24px;
  }

  .arch-orbit{
    width:320px;
    height:320px;
    transform:translate(-50%, -50%) rotate(var(--orbit-rotation));
  }

  .arch-node{
    font-size:11px;
    gap:4px;
  }

  .arch-node i{
    width:18px;
    height:18px;
  }

  .arch-node:hover{
    transform:
      rotate(var(--angle))
      translateX(var(--radius))
      rotate(calc(var(--angle) * -1))
      scale(1.05);
  }

  .arch-chip{
    padding:6px 12px;
    gap:4px;
    font-size:12px;
  }

  .arch-row.top, .arch-row.bottom{
    gap:12px;
  }

  .arch-side{
    gap:8px;
  }

  .arch-mini{
    font-size:11px;
    gap:4px;
    padding:8px 12px;
  }

  .gm-tooltip{
    min-width:180px;
    max-width:220px;
    font-size:12px;
    padding:10px 12px;
  }

  .arch-line{
    stroke-width:1;
  }
}

@media (max-width: 480px) {
  :root{
    --radius: 90px;
  }

  .arch-stage{
    height:480px;
    margin-top:30px;
  }

  .arch-core-inner{
    padding:15px 20px;
    font-size:14px;
  }

  .arch-core i{
    width:22px;
    height:22px;
  }

  .arch-orbit{
    width:220px;
    height:220px;
  }

  .arch-node i{
    width:16px;
    height:16px;
  }

  .arch-node{
    font-size:10px;
    gap:3px;
  }

  .arch-chip{
    padding:4px 8px;
    font-size:10px;
    gap:4px;
  }

  .arch-row.top, .arch-row.bottom{
    gap:6px;
  }

  .arch-side{
    gap:6px;
  }

  .arch-side.left{
    left:5%;
  }

  .arch-side.right{
    right:5%;
  }

  .arch-mini{
    font-size:10px;
    gap:4px;
    padding:5px 8px;
  }

  .arch-mini i{
    width:13px;
    height:13px;
  }

  .gm-tooltip{
    min-width:150px;
    max-width:200px;
    font-size:11px;
    padding:8px 10px;
  }
}

/* BENEFICIOS BOTTOM PART */
/* =============================
   TECH BENEFITS CARDS
============================= */

.tech-benefits-section {
  padding:0;
  text-align:center;
}

.tech-benefits-wrap{
  opacity:1 !important;
  transform:none !important;
}

.tech-benefits {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:20px;
}

.tech-card {
  flex:0 0 calc(33.333% - 14px);
  max-width:380px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:12px;
  padding:36px 24px 28px;
  border-radius:16px;
  background:rgba(255,255,255,0.04);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.08);
  cursor:default;
  position:relative;
  overflow:hidden;
}

.tech-card:hover{
  box-shadow:0 20px 48px rgba(0,0,0,0.2);
  border-color:rgba(239,130,32,0.2);
  transition:box-shadow .4s ease, border-color .4s ease;
}

.tech-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background:linear-gradient(90deg, rgba(239,130,32,0.3), rgba(239,130,32,0.05));
  opacity:0;
  transition:opacity .4s ease;
}

.tech-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 50% 0%, rgba(239,130,32,0.06), transparent 70%);
  opacity:0;
  transition:opacity .4s ease;
  pointer-events:none;
}

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

.tech-card:hover::after{
  opacity:1;
}

.tech-card:nth-child(1){animation-delay:0.1s}
.tech-card:nth-child(2){animation-delay:0.25s}
.tech-card:nth-child(3){animation-delay:0.4s}
.tech-card:nth-child(4){animation-delay:0.55s}
.tech-card:nth-child(5){animation-delay:0.7s}
.tech-card:nth-child(6){animation-delay:0.85s}
.tech-card:nth-child(7){animation-delay:1s}
.tech-card:nth-child(8){animation-delay:1.15s}

@keyframes cardFadeIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.tech-card.reveal.active {
  animation: cardFadeIn 0.7s cubic-bezier(.215,.61,.355,1) backwards;
}

.tech-icon {
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(239,130,32,0.12), rgba(239,130,32,0.06));
  border:1px solid rgba(239,130,32,0.15);
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease,
    background .4s ease;
  flex-shrink:0;
}

.tech-icon i {
  font-size:26px;
  color:var(--primary);
  transition:transform .4s cubic-bezier(.2,.8,.2,1);
}

.tech-card h4 {
  font-size:16px;
  font-weight:600;
  color:var(--primary);
  line-height:1.35;
}

.tech-card p {
  font-size:13.5px;
  line-height:1.65;
  color:var(--gray);
  margin:0;
}

.tech-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 48px rgba(0,0,0,0.2);
  border-color:rgba(239,130,32,0.2);
}

.tech-card:hover .tech-icon {
  transform:scale(1.08);
  box-shadow:0 0 24px rgba(239,130,32,0.15);
  background:linear-gradient(135deg, rgba(239,130,32,0.18), rgba(239,130,32,0.1));
}

.tech-card:hover .tech-icon i {
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:1100px){
  .tech-card{
    flex:0 0 calc(50% - 10px);
    padding:28px 20px 24px;
  }
}

@media(max-width:700px){
  .tech-card{
    flex:0 0 100%;
    max-width:400px;
    padding:24px 18px 22px;
  }

  .tech-icon{
    width:60px;
    height:60px;
  }

  .tech-icon i{
    font-size:22px;
  }

  .tech-card h4{
    font-size:14.5px;
  }

  .tech-card p{
    font-size:13px;
  }
}

/* =============================
   HALF TEXT - HALF IMAGE
============================= */

.ai-section {
  background:#f7f9fc;
}

.ai-section .content-box {
  background:#fff;
  border-radius:20px;
  box-shadow:0 4px 24px rgba(0,0,0,0.06);
  padding:40px 48px;
  transition:box-shadow 0.4s ease, transform 0.4s ease;
}

.ai-section .content-box:hover {
  box-shadow:0 8px 40px rgba(0,0,0,0.1);
  transform:translateY(-4px);
}

.content-box-container {
  display:grid;
  grid-template-columns:1fr;
  gap:50px;
}

.block-title-section {
  text-align:center;
  margin-bottom:50px;
}

.block-title {
  font-size:48px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:15px;
}

.block-title.glow {
  text-shadow:0 0 25px rgba(250,94,58,0.4);
  animation:glowPulse 3s ease-in-out infinite;
}

.block-subtitle {
  font-size:18px;
  max-width:650px;
  margin:0 auto;
  line-height:1.6;
  color:#666;
}

.content-box {
  display:flex;
  align-items:center;
  gap:40px;
  justify-content:space-between;
  flex-wrap:nowrap;
}

.text-box {
  flex:1 1 500px;
  text-align:left;
  color:#333;
  line-height:1.7;
  font-size:16px;
}

.text-box h3 {
  font-size:28px;
  font-weight:600;
  color:#222;
  margin-bottom:18px;
  text-align:left;
}

.text-box p {
  font-size:16px;
  line-height:1.7;
  color:#666;
}

.section-highlight {
  text-transform:uppercase;
  font-weight:700;
  font-size:22px;
  color:var(--primary);
  margin-bottom:25px;
  letter-spacing:1px;
  border-bottom:2px solid rgba(250,94,58,0.3);
  padding-bottom:8px;
}

.highlight-list {
  list-style:none;
  padding-left:0;
  margin-top:0;
}

.highlight-list li {
  position:relative;
  padding-left:32px;
  margin-bottom:14px;
  font-weight:500;
  color:#555;
  transition:color .3s ease, transform .3s ease;
  line-height:1.6;
}

.highlight-list li::before {
  content:"\f00c";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  left:0;
  top:2px;
  color:var(--primary);
  font-size:15px;
}

.highlight-list li:hover {
  color:var(--primary);
  transform:translateX(6px);
}

.media-box {
  flex:1 1 600px;
  display:flex;
  justify-content:flex-end;
}

.media-box img {
  max-width:100%;
  height:auto;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}

.block-image {
  width:100%;
  max-width:500px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}

.block-image:hover {
  transform:scale(1.05);
  box-shadow:0 15px 35px rgba(0,0,0,0.2);
}

@media(max-width:1100px){
  .content-box {
    gap:30px;
  }
}

.ai-card-inner {
  display:flex;
  flex-direction:column;
  width:100%;
  gap:30px;
}

.ai-card-row {
  display:flex;
  align-items:center;
  gap:40px;
}

@media(max-width:768px){
  .content-box {
    flex-direction:column;
  }

  .ai-card-row {
    flex-direction:column;
    gap:20px;
  }

  .ai-section .content-box {
    padding:24px 20px;
  }

  .text-box, .media-box {
    flex:1 1 100%;
    text-align:center;
  }

  .text-box h3 {
    font-size:24px;
    text-align:center;
  }

  .text-box p {
    font-size:15px;
  }

  .block-title {
    font-size:36px;
  }

  .block-subtitle {
    font-size:16px;
  }

  .section-highlight {
    text-align:center;
  }

  .highlight-list li {
    text-align:left;
    padding-left:32px;
  }

  .media-box {
    justify-content:center;
  }
}

@media(max-width:480px){
  .block-title {
    font-size:28px;
  }

  .block-subtitle {
    font-size:14px;
  }

  .text-box h3 {
    font-size:20px;
  }

  .text-box p {
    font-size:14px;
  }

  .highlight-list li {
    font-size:14px;
  }
}

/* =============================
   TECH FEATURES SECTION
============================= */

.tech-features {
  padding:60px 0;
  background:#f7f9fc;
  text-align:center;
}

.tech-feature {
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:30px;
  flex-wrap:wrap;
  background:#fff;
  border-radius:20px;
  box-shadow:0 4px 24px rgba(0,0,0,0.06);
  padding:40px 48px;
  transition:box-shadow 0.4s ease, transform 0.4s ease;
}

.tech-feature:hover {
  box-shadow:0 8px 40px rgba(0,0,0,0.1);
  transform:translateY(-4px);
}

.feature-image {
  flex:1;
}

.feature-image img {
  width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.5s ease;
}

.tech-feature:hover .feature-image img {
  transform:scale(1.03);
  box-shadow:0 12px 32px rgba(0,0,0,0.15);
}

.feature-text {
  flex:1;
  text-align:left;
}

.feature-text h4 {
  font-size:22px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:15px;
  text-transform: uppercase;
  letter-spacing:1px;
}

.feature-text p {
  font-size:16px;
  color:#555;
  line-height:1.7;
  margin:0;
}

.tech-feature:nth-child(4) {
  flex-direction:row-reverse;
}

/* RESPONSIVE MOBILE */
@media (max-width:768px) {
  .tech-feature {
    flex-direction: column !important;
    gap: 20px;
    padding:24px 20px;
  }

  .feature-text {
    text-align: center;
    order: 2;
  }

  .feature-image {
    order: 1;
  }

  .feature-text h4 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* RESPONSIVE SMALL MOBILE */
@media (max-width:480px) {
  .tech-feature {
    gap: 15px;
    margin-bottom: 40px;
  }

  .feature-text h4 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
    line-height: 1.5;
  }
}