/* ========== PAGE HERO ========== */
.page-hero{background:var(--navy);padding:0;position:relative;overflow:hidden}
.page-hero::before{content:'';position:absolute;top:0;right:0;width:500px;height:500px;background:radial-gradient(circle,rgba(232,114,12,.08) 0%,transparent 70%);pointer-events:none}
.page-hero .container{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;max-width:none;padding:0}
.page-hero-content{position:relative;z-index:2;padding:80px 60px 80px max(48px,calc((100vw - 1440px)/2 + 48px));display:flex;flex-direction:column;justify-content:center}
.page-hero h1{font-family:var(--font-heading);font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--white);line-height:1.2;margin-bottom:20px}
.page-hero h1 .highlight{color:var(--orange)}
.page-hero-desc{color:rgba(255,255,255,.6);font-size:1.05rem;line-height:1.8;margin-bottom:32px;max-width:520px}
.page-hero-stats{display:flex;gap:32px;margin-bottom:36px}
.ph-stat{text-align:center;padding:20px 24px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;min-width:120px}
.ph-stat .num{font-family:var(--font-heading);font-size:1.4rem;font-weight:800;color:var(--orange);margin-bottom:4px}
.ph-stat .label{font-size:.78rem;color:rgba(255,255,255,.5)}
.page-hero-visual{position:relative;min-height:400px;overflow:hidden}
.hero-buttons{display:flex;gap:16px;flex-wrap:wrap}

/* Hero decorative elements */
.hero-industry-icon{width:200px;height:200px;background:rgba(232,114,12,.08);border:2px solid rgba(232,114,12,.15);border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;z-index:2}
.hero-industry-icon svg{width:100px;height:100px;stroke:var(--orange);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;opacity:.6}
.hero-ring{position:absolute;border-radius:50%;border:1px solid rgba(232,114,12,.1);animation:ringRotate 25s linear infinite}
.hero-ring:nth-child(1){width:350px;height:350px}
.hero-ring:nth-child(2){width:280px;height:280px;animation-direction:reverse;animation-duration:18s;border-color:rgba(26,95,168,.12)}
@keyframes ringRotate{to{transform:rotate(360deg)}}

/* ========== OVERVIEW ========== */
.overview{background:var(--bg)}
.overview .container{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.overview-content .section-desc{margin-bottom:32px}
.ov-list{display:flex;flex-direction:column;gap:12px}
.ov-list-item{display:flex;align-items:center;gap:12px;padding:12px 16px;background:var(--white);border-radius:10px;border:1px solid rgba(0,0,0,.05);transition:all .3s}
.ov-list-item:hover{border-color:rgba(232,114,12,.2);transform:translateX(4px)}
.ov-list-item .check{width:24px;height:24px;background:var(--orange-light);border-radius:6px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ov-list-item .check svg{width:14px;height:14px;stroke:var(--orange);fill:none;stroke-width:2.5}
.ov-list-item span{font-size:.9rem;color:var(--navy);font-weight:500}
.overview-visual{position:relative;display:flex;align-items:center;justify-content:center}
.ov-big-icon{width:280px;height:280px;background:linear-gradient(135deg,var(--orange-light),rgba(232,114,12,.08));border-radius:24px;display:flex;align-items:center;justify-content:center;border:2px solid rgba(232,114,12,.1)}
.ov-big-icon svg{width:140px;height:140px;stroke:var(--orange);fill:none;stroke-width:1.2;stroke-linecap:round;stroke-linejoin:round;opacity:.5}

/* ========== APPLICATIONS ========== */
.applications .app-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px}
.app-card{background:var(--white);border-radius:16px;padding:32px 24px;border:1px solid rgba(0,0,0,.06);transition:all .4s;text-align:center}
.app-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.06);border-color:var(--orange)}
.app-card-icon{width:64px;height:64px;background:var(--orange-light);border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.app-card-icon svg{width:32px;height:32px;stroke:var(--orange);fill:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round}
.app-card h4{font-family:var(--font-heading);font-size:.85rem;color:var(--navy);margin-bottom:8px}
.app-card p{color:#64748b;font-size:.82rem;line-height:1.5}

/* ========== PROCESS GRID ========== */
.process-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:48px}
.process-card{background:var(--white);border-radius:16px;padding:28px 24px;border:1px solid rgba(0,0,0,.06);transition:all .4s;position:relative;overflow:hidden}
.process-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.06);border-color:var(--orange)}
.process-card::before{content:'';position:absolute;top:0;left:0;width:4px;height:100%;background:var(--orange);opacity:0;transition:opacity .3s}
.process-card:hover::before{opacity:1}
.process-card-icon{width:48px;height:48px;background:var(--orange-light);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.process-card-icon svg{width:24px;height:24px;stroke:var(--orange);fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.process-card h4{font-family:var(--font-heading);font-size:.82rem;color:var(--navy);margin-bottom:8px}
.process-card p{color:#64748b;font-size:.82rem;line-height:1.6}

/* ========== SUBCATEGORIES ========== */
.subcats{background:var(--white)}
.subcat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:40px}
.subcat-tag{padding:14px 20px;background:var(--bg);border-radius:12px;border:1px solid rgba(0,0,0,.04);font-size:.88rem;color:var(--navy);font-weight:500;transition:all .3s;text-align:center}
.subcat-tag:hover{border-color:var(--orange);color:var(--orange);transform:translateY(-2px)}

/* ========== WHY MECHANIMIX ========== */
.why-section{background:var(--navy);padding:80px 0}
.why-section .container{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.why-content h2{font-family:var(--font-heading);font-size:clamp(1.5rem,3vw,2.2rem);color:var(--white);margin-bottom:20px}
.why-content p{color:rgba(255,255,255,.6);font-size:1rem;line-height:1.8;margin-bottom:28px}
.why-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.why-stat{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:20px;text-align:center}
.why-stat .num{font-family:var(--font-heading);font-size:1.6rem;font-weight:800;color:var(--orange);margin-bottom:4px}
.why-stat .label{font-size:.78rem;color:rgba(255,255,255,.5)}

/* ========== PRODUCTS BAND ========== */
.products-band{background:var(--navy);padding:80px 0}
.products-band .container{text-align:center}
.products-band h2{font-family:var(--font-heading);font-size:clamp(1.5rem,3vw,2.2rem);color:var(--white);margin-bottom:16px}
.products-band p{color:rgba(255,255,255,.6);font-size:1rem;margin-bottom:40px;max-width:600px;margin-left:auto;margin-right:auto}
.prod-links{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
.prod-link{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:24px 32px;color:var(--white);font-weight:600;font-size:.9rem;transition:all .3s;display:flex;align-items:center;gap:10px}
.prod-link:hover{background:rgba(232,114,12,.12);border-color:var(--orange);transform:translateY(-3px)}
.prod-link svg{width:20px;height:20px;stroke:var(--orange);fill:none;stroke-width:2}
.products-band .prod-card{background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:16px;padding:28px;transition:all .3s;text-align:left}
.products-band .prod-card:hover{background:rgba(232,114,12,.08);border-color:rgba(232,114,12,.3);transform:translateY(-4px)}
.products-band .prod-card h4{color:var(--white);font-family:var(--font-heading);font-size:.85rem;margin-bottom:8px}
.products-band .prod-card p{color:rgba(255,255,255,.5);font-size:.8rem;line-height:1.5;margin-bottom:12px}
.products-band .prod-card a{color:var(--orange);font-weight:600;font-size:.82rem;display:inline-flex;align-items:center;gap:4px}
.prod-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:32px}

/* ========== CTA BAND ========== */
.cta-band{background:var(--orange);padding:80px 0;position:relative;overflow:hidden}
.cta-band::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
.cta-band .container{text-align:center;position:relative;z-index:1}
.cta-band h2{font-family:var(--font-heading);font-size:clamp(1.5rem,3vw,2.2rem);color:var(--white);margin-bottom:16px}
.cta-band p{color:rgba(255,255,255,.85);font-size:1.05rem;margin-bottom:32px;max-width:600px;margin-left:auto;margin-right:auto}
.cta-band .btn-white{background:var(--white);color:var(--orange);padding:16px 40px;border-radius:12px;font-weight:700;font-size:1rem;transition:all .3s;display:inline-flex;align-items:center;gap:8px;border:2px solid var(--white)}
.cta-band .btn-white:hover{background:transparent;color:var(--white);transform:translateY(-3px);box-shadow:0 10px 30px rgba(0,0,0,.2)}

/* ========== INDUSTRY RESPONSIVE ========== */
@media(max-width:1024px){
  .page-hero .container{grid-template-columns:1fr;text-align:center;padding:0}
  .page-hero-content{padding:40px 24px!important}
  .page-hero-visual{order:-1;min-height:250px;margin-top:0;margin-bottom:0;max-height:300px}
  .page-hero-desc{margin:0 auto 32px}
  .page-hero-stats{justify-content:center}
  .hero-buttons{justify-content:center}
  .overview .container{grid-template-columns:1fr}
  .applications .app-grid{grid-template-columns:1fr 1fr}
  .process-grid{grid-template-columns:1fr 1fr}
  .subcat-grid{grid-template-columns:1fr 1fr}
  .why-section .container{grid-template-columns:1fr}
  .prod-links{flex-direction:column;align-items:center}
  .prod-cards{grid-template-columns:1fr}
}

@media(max-width:768px){
  .page-hero-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px;justify-items:center}
  .ph-stat{min-width:100px;padding:14px 16px}
  .applications .app-grid{grid-template-columns:1fr}
  .process-grid{grid-template-columns:1fr}
  .subcat-grid{grid-template-columns:1fr}
  .why-stats{grid-template-columns:1fr}
}
