:root{
    --ink:#14171c;
    --ink-soft:#1d2129;
    --ink-line:#2b3038;
    --red:#e4132a;
    --red-deep:#a80e1f;
    --paper:#f2f3f5;
    --white:#ffffff;
    --slate:#5b6270;
    --line:#e2e4e8;
    --display: 'Big Shoulders', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'JetBrains Mono', monospace;
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    font-family:var(--body);
    color:var(--ink);
    background:var(--white);
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  section{position:relative;}

  ::selection{background:var(--red); color:var(--white);}
  :focus-visible{outline:2px solid var(--red); outline-offset:3px;}

  .eyebrow{
    font-family:var(--mono);
    font-size:12.5px;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--red);
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:7px; height:7px;
    background:var(--red);
    border-radius:50%;
    display:inline-block;
  }

  h1,h2,h3{font-family:var(--display); font-weight:800; line-height:0.98; letter-spacing:-0.01em;}

  /* ---------- NAV ---------- */
  .nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:22px 0;
    transition:background .35s ease, padding .35s ease, border-color .35s ease;
    border-bottom:1px solid transparent;
  }
  .nav.scrolled{
    background:rgba(20,23,28,.92);
    backdrop-filter:blur(10px);
    padding:14px 0;
    border-bottom:1px solid var(--ink-line);
  }
  .nav .wrap{display:flex; align-items:center; justify-content:space-between;}
  .logo{
    display:flex; align-items:center;
  }
  .logo img{height:26px; width:auto; display:block;}
  .nav-links{display:flex; align-items:center; gap:36px;}
  .nav-links a{
    font-size:14.5px; font-weight:500; color:rgba(255,255,255,.72);
    transition:color .2s ease;
  }
  .nav-links a:hover{color:var(--white);}

  .lang-switch{
    display:flex; align-items:center; gap:2px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:4px; padding:3px;
    margin-right:4px;
  }
  .lang-btn{
    font-family:var(--mono); font-size:11.5px; font-weight:600; letter-spacing:.03em;
    color:rgba(255,255,255,.55);
    background:transparent; border:none; border-radius:2px;
    padding:6px 9px; cursor:pointer;
    transition:background .2s ease, color .2s ease;
  }
  .lang-btn:hover{color:var(--white);}
  .lang-btn.active{background:var(--red); color:var(--white);}
  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    font-family:var(--body); font-weight:600; font-size:14.5px;
    padding:12px 24px; border-radius:3px;
    cursor:pointer; border:1px solid transparent;
    transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
    white-space:nowrap;
  }
  .btn:hover{transform:translateY(-2px);}
  .btn-red{background:var(--red); color:var(--white);}
  .btn-red:hover{background:var(--red-deep);}
  .btn-ghost-dark{border-color:rgba(255,255,255,.28); color:var(--white);}
  .btn-ghost-dark:hover{border-color:var(--white); background:rgba(255,255,255,.06);}
  .btn-ghost-light{border-color:rgba(20,23,28,.2); color:var(--ink);}
  .btn-ghost-light:hover{border-color:var(--ink);}

  /* ---------- HERO ---------- */
  .hero{
    background:var(--ink);
    min-height:100vh;
    display:flex; flex-direction:column; justify-content:center;
    padding:150px 0 90px;
    position:relative;
    overflow:hidden;
  }
  .hero-bg{
    position:absolute; inset:0; z-index:0;
    overflow:hidden;
  }
  .hero-bg img{
    width:100%; height:100%; object-fit:cover;
    object-position:58% 45%;
    transform:scale(1.04);
    filter:saturate(.92);
  }
  .hero-bg .overlay{
    position:absolute; inset:0;
    background:
      linear-gradient(90deg, rgba(14,16,20,.94) 0%, rgba(14,16,20,.82) 32%, rgba(14,16,20,.42) 62%, rgba(14,16,20,.62) 100%),
      linear-gradient(0deg, rgba(14,16,20,.95) 0%, rgba(14,16,20,.15) 38%, rgba(14,16,20,.1) 70%, rgba(14,16,20,.55) 100%);
  }
  .hero .wrap{position:relative; z-index:2;}
  .hero-eyebrow{
    font-family:var(--mono); font-size:13px; letter-spacing:.16em; text-transform:uppercase;
    color:rgba(255,255,255,.55); margin-bottom:26px; display:flex; align-items:center; gap:12px;
  }
  .hero-eyebrow .rule{width:34px; height:1px; background:var(--red);}
  h1.hero-title{
    font-size:clamp(48px, 8vw, 108px);
    color:var(--white);
    text-transform:uppercase;
    max-width:16ch;
  }
  h1.hero-title .accent{color:var(--red);}
  .hero-sub{
    font-size:18px; line-height:1.6; color:rgba(255,255,255,.68);
    max-width:540px; margin:30px 0 42px;
    font-weight:400;
  }
  .hero-ctas{display:flex; gap:16px; flex-wrap:wrap; margin-bottom:64px;}
  .hero-stats{
    display:flex; gap:0; flex-wrap:wrap;
    border-top:1px solid var(--ink-line);
    padding-top:28px;
    max-width:640px;
  }
  .hero-stat{padding-right:44px; margin-right:4px; border-right:1px solid var(--ink-line);}
  .hero-stat:last-child{border-right:none; margin-right:0; padding-right:0;}
  .hero-stat .num{font-family:var(--mono); font-size:26px; font-weight:700; color:var(--white);}
  .hero-stat .num span{color:var(--red);}
  .hero-stat .lbl{font-size:12.5px; color:rgba(255,255,255,.5); margin-top:4px;}

  .scroll-cue{
    position:absolute; bottom:36px; left:32px; z-index:2;
    display:flex; align-items:center; gap:10px;
    color:rgba(255,255,255,.45); font-family:var(--mono); font-size:11.5px;
    letter-spacing:.1em; text-transform:uppercase;
  }
  .scroll-cue .line{width:1px; height:34px; background:rgba(255,255,255,.3); position:relative; overflow:hidden;}
  .scroll-cue .line::after{
    content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
    background:var(--red); animation:scrollline 1.8s ease-in-out infinite;
  }
  @keyframes scrollline{ 50%{top:0;} 100%{top:100%;} }

  /* ---------- MARQUEE ---------- */
  .marquee-strip{
    background:var(--red); overflow:hidden; padding:15px 0;
    white-space:nowrap;
  }
  .marquee-track{display:inline-flex; animation:marquee 32s linear infinite;}
  .marquee-track span{
    font-family:var(--display); font-weight:700; font-size:19px; text-transform:uppercase;
    color:var(--white); letter-spacing:.02em; padding:0 26px;
    display:inline-flex; align-items:center; gap:26px;
  }
  .marquee-track span::after{content:"✦"; font-size:13px; opacity:.8;}
  @keyframes marquee{ 0%{transform:translateX(0);} 100%{transform:translateX(-50%);} }

  /* ---------- SECTION HEADS ---------- */
  .section-pad{padding:120px 0;}
  .section-head{max-width:640px; margin-bottom:64px;}
  .section-head h2{font-size:clamp(32px,4.2vw,52px); text-transform:uppercase;}
  .section-head p{font-size:16.5px; color:var(--slate); margin-top:18px; line-height:1.65;}

  /* ---------- ABOUT ---------- */
  .about{background:var(--white);}
  .about-grid{display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; margin-bottom:80px;}
  .about-text p{font-size:16px; line-height:1.75; color:var(--slate); margin-bottom:18px;}
  .about-text p strong{color:var(--ink); font-weight:600;}
  .iso-row{display:flex; gap:14px; margin-top:34px;}
  .iso-badge{
    display:flex; align-items:center; gap:10px;
    border:1px solid var(--line); border-radius:4px;
    padding:10px 16px;
  }
  .iso-badge .code{font-family:var(--mono); font-weight:700; font-size:13px; color:var(--ink);}
  .iso-badge .desc{font-size:11.5px; color:var(--slate);}
  .about-media{position:relative;}
  .about-media img{
    width:100%; height:420px; object-fit:cover; border-radius:6px;
  }
  .float-card{
    position:absolute; bottom:-28px; left:-28px;
    background:var(--ink); color:var(--white);
    padding:22px 26px; border-radius:6px;
    box-shadow:0 20px 50px rgba(20,23,28,.28);
    min-width:190px;
  }
  .float-card .num{font-family:var(--mono); font-size:30px; font-weight:700; color:var(--white);}
  .float-card .num span{color:var(--red);}
  .float-card .lbl{font-size:12px; color:rgba(255,255,255,.55); margin-top:4px; line-height:1.4;}

  .stat-row{
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:var(--line); border:1px solid var(--line); border-radius:6px; overflow:hidden;
  }
  .stat-cell{background:var(--white); padding:32px 30px;}
  .stat-cell .num{font-family:var(--mono); font-weight:700; font-size:38px; color:var(--ink);}
  .stat-cell .num span{color:var(--red);}
  .stat-cell .lbl{font-size:13.5px; color:var(--slate); margin-top:6px;}

  /* ---------- REVENUE CHART ---------- */
  .revenue{margin-top:90px; border-top:1px solid var(--line); padding-top:64px;}
  .revenue-head{display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:36px; flex-wrap:wrap; gap:18px;}
  .revenue-head h3{font-size:26px; text-transform:uppercase;}
  .revenue-head .growth{font-family:var(--mono); font-size:14px; color:var(--red); font-weight:600;}
  .chart-box{width:100%; height:260px;}
  .chart-box svg{width:100%; height:100%; overflow:visible;}
  .chart-labels{display:flex; justify-content:space-between; margin-top:10px;} 
  .chart-labels span{font-family:var(--mono); font-size:11.5px; color:var(--slate);}

  /* ---------- PROCESS ---------- */
  .process{background:var(--paper);}
  .process-line-wrap{overflow-x:auto; padding-bottom:20px; margin:0 -32px; padding-left:32px; padding-right:32px;}
  .process-line{
    display:flex; min-width:920px; position:relative; padding-top:6px;
  }
  .process-line::before{
    content:""; position:absolute; top:23px; left:0; right:0; height:2px; background:var(--line);
  }
  .process-line .rail{
    position:absolute; top:23px; left:0; height:2px; background:var(--red);
    width:0%; transition:width 1.6s cubic-bezier(.2,.7,.2,1);
  }
  .process-line.in-view .rail{width:100%;}
  .p-step{flex:1; position:relative; padding:0 14px; text-align:left;}
  .p-node{
    width:34px; height:34px; border-radius:50%; background:var(--paper);
    border:2px solid var(--red); margin-bottom:22px; position:relative; z-index:2;
    display:flex; align-items:center; justify-content:center;
    font-family:var(--mono); font-weight:700; font-size:12.5px; color:var(--red);
  }
  .p-step h4{font-family:var(--display); font-size:19px; text-transform:uppercase; font-weight:700; margin-bottom:8px;}
  .p-step p{font-size:13.5px; color:var(--slate); line-height:1.55;}

  /* ---------- CAPABILITIES ---------- */
  .capabilities{background:var(--white);}
  .cap-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); border:1px solid var(--line);}
  .cap-card{
    background:var(--white); padding:34px 30px; min-height:260px;
    display:flex; flex-direction:column; justify-content:space-between;
    position:relative; overflow:hidden;
  }
  .cap-card.photo{color:var(--white);}
  .cap-card.photo img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;}
  .cap-card.photo::before{
    content:""; position:absolute; inset:0; z-index:1;
    background:linear-gradient(180deg, rgba(20,23,28,.35), rgba(20,23,28,.88));
  }
  .cap-card > *{position:relative; z-index:2;}
  .cap-tag{font-family:var(--mono); font-size:11px; text-transform:uppercase; letter-spacing:.1em; opacity:.65; margin-bottom:14px;}
  .cap-card h4{font-family:var(--display); font-size:23px; text-transform:uppercase; margin-bottom:10px;}
  .cap-machines{font-size:12.5px; line-height:1.6; opacity:.8; margin-bottom:18px;}
  .cap-stat{font-family:var(--mono); font-weight:700; font-size:22px;}
  .cap-card:not(.photo) .cap-stat{color:var(--red);}
  .cap-stat small{display:block; font-family:var(--body); font-weight:500; font-size:11.5px; opacity:.6; text-transform:none; letter-spacing:0;}

  /* ---------- WHY ---------- */
  .why{background:var(--ink); color:var(--white);}
  .why .section-head p{color:rgba(255,255,255,.55);}
  .why-grid{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--ink-line); border:1px solid var(--ink-line);}
  .why-card{background:var(--ink); padding:40px; display:flex; gap:22px;}
  .why-icon{
    width:46px; height:46px; flex:none; border-radius:50%;
    border:1px solid var(--ink-line); display:flex; align-items:center; justify-content:center;
  }
  .why-icon svg{width:20px; height:20px; stroke:var(--red);}
  .why-card h4{font-family:var(--display); font-size:20px; text-transform:uppercase; margin-bottom:8px; font-weight:700;}
  .why-card p{font-size:14.5px; line-height:1.65; color:rgba(255,255,255,.58);}

  /* ---------- CUSTOMERS ---------- */
  .customers{background:var(--paper); padding:56px 0;}
  .customers .wrap{display:flex; align-items:center; gap:40px; flex-wrap:wrap; justify-content:space-between;}
  .customers .lbl{font-family:var(--mono); font-size:12.5px; text-transform:uppercase; letter-spacing:.1em; color:var(--slate);}
  .customer-tags{display:flex; gap:14px; flex-wrap:wrap;}
  .customer-tag{
    font-family:var(--display); font-weight:700; font-size:17px; text-transform:uppercase;
    border:1px solid var(--line); border-radius:3px; padding:10px 22px; color:var(--ink);
    background:var(--white);
  }

  /* ---------- CONTACT ---------- */
  .contact{background:var(--ink); color:var(--white); position:relative; overflow:hidden;}
  .contact::before{
    content:"";
    position:absolute; inset:0;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cpath d='M42 0 L84 24 L84 72 L42 96 L0 72 L0 24 Z' fill='none' stroke='%23e4132a' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
    background-size:84px 96px;
    -webkit-mask-image:radial-gradient(ellipse 70% 70% at 90% 20%, black 0%, transparent 72%);
            mask-image:radial-gradient(ellipse 70% 70% at 90% 20%, black 0%, transparent 72%);
  }
  .contact .wrap{position:relative; z-index:2;}
  .contact-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:72px;}
  .contact h2{font-size:clamp(30px,4vw,46px); text-transform:uppercase; max-width:12ch; margin-bottom:22px;}
  .contact-lead{color:rgba(255,255,255,.6); font-size:16px; line-height:1.65; max-width:440px; margin-bottom:36px;}
  .contact-cards{display:flex; flex-direction:column;}

  .info-card{
    background:var(--ink-soft); border:1px solid var(--ink-line); border-radius:6px;
    padding:8px 28px; margin-bottom:22px;
  }
  .info-row{display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; padding:14px 0; border-bottom:1px solid var(--ink-line);}
  .info-row:last-child{border-bottom:none;}
  .info-row .k{font-family:var(--mono); font-size:11.5px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.45);}
  .info-row .v{font-size:14.5px; font-weight:500; color:var(--white);}
  .info-row a.v:hover{color:var(--red);}
  .info-row .map-link{text-decoration:underline; text-decoration-color:rgba(255,255,255,.25); text-underline-offset:3px;}
  .info-row .map-link:hover{text-decoration-color:var(--red);}

  .dept-label{
    font-family:var(--mono); font-size:12px; text-transform:uppercase; letter-spacing:.1em;
    color:rgba(255,255,255,.4); margin:0 0 14px;
  }
  .dept-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
  .dept-card{
    background:var(--ink-soft); border:1px solid var(--ink-line); border-radius:6px;
    padding:24px; transition:border-color .2s ease;
  }
  .dept-card:hover{border-color:var(--red);}
  .dept-icon{
    width:38px; height:38px; border-radius:50%; background:rgba(228,19,42,.12);
    display:flex; align-items:center; justify-content:center; margin-bottom:16px;
  }
  .dept-icon svg{width:18px; height:18px; stroke:var(--red);}
  .dept-card h5{font-family:var(--display); font-size:17px; text-transform:uppercase; font-weight:700; color:var(--white); margin-bottom:12px;}
  .dept-phone{display:block; font-family:var(--mono); font-size:16.5px; font-weight:700; color:var(--white); margin-bottom:6px;}
  .dept-phone:hover{color:var(--red);}
  .dept-email{display:block; font-size:13px; color:rgba(255,255,255,.55);}
  .dept-email:hover{color:var(--white);}

  @media (max-width:600px){
    .dept-grid{grid-template-columns:1fr;}
  }

  /* ---------- FOOTER ---------- */
  footer{background:var(--ink-soft); padding:44px 0; border-top:1px solid var(--ink-line);}
  footer .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
  footer .logo img{height:22px;}
  footer .foot-links{display:flex; gap:28px; flex-wrap:wrap;}
  footer .foot-links a{font-size:13.5px; color:rgba(255,255,255,.55);}
  footer .foot-links a:hover{color:var(--white);}
  footer .copy{font-size:12.5px; color:rgba(255,255,255,.35); font-family:var(--mono);}

  /* ---------- SCROLL REVEAL ---------- */
  .reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    .nav-links{display:none;}
    .about-grid{grid-template-columns:1fr; gap:90px;}
    .why-grid{grid-template-columns:1fr;}
    .cap-grid{grid-template-columns:repeat(2,1fr);}
    .contact-grid{grid-template-columns:1fr; gap:56px;}
    .stat-row{grid-template-columns:1fr; }
  }
  @media (max-width:600px){
    .wrap{padding:0 20px;}
    .hero{padding:130px 0 70px;}
    .hero-stat{padding-right:24px; margin-right:24px;}
    .cap-grid{grid-template-columns:1fr;}
    .section-pad{padding:80px 0;}
    .float-card{position:static; margin-top:16px;}
    .about-media img{height:300px;}
    .customers .wrap{flex-direction:column; align-items:flex-start;}
  }