
:root{
  --navy:#041736;
  --navy-2:#0a3471;
  --navy-3:#102b55;
  --red:#ef3348;
  --red-dark:#dc1728;
  --text:#10213f;
  --muted:#56657d;
  --line:#d8deea;
  --bg:#f5f7fb;
  --card:#ffffff;
  --shadow:0 16px 40px rgba(4,23,54,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1240px, calc(100% - 56px)); margin:0 auto}
.section{padding:90px 0}
.reveal{opacity:1; transform:none}
.delay,.delay2,.delay3{transition-delay:0s}

/* Header */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(4,23,54,.10);
  box-shadow:0 10px 24px rgba(4,23,54,.08);
}
.nav-wrap{
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand{flex:0 0 auto}
.brand img{width:420px; max-width:34vw; filter:drop-shadow(0 5px 12px rgba(4,23,54,.15));}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  flex:1 1 auto;
  min-width:0;
}
.nav a{
  position:relative;
  font-size:18px;
  font-weight:700;
  color:#0a2349;
  letter-spacing:.01em;
}
.nav a::after,
.lang.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-10px;
  height:3px;
  border-radius:999px;
  transform:scaleX(0);
  transform-origin:center;
  background:var(--red);
  transition:transform .22s ease;
}
.nav a:hover::after,
.lang.active::after{transform:scaleX(1)}
.lang-switch{display:flex; align-items:center; gap:18px; flex:0 0 auto}
.lang{
  position:relative;
  appearance:none; border:0; background:none; padding:0;
  font-size:16px; font-weight:800; letter-spacing:.02em; cursor:pointer; color:#0a2349;
}
.lang.active{color:var(--red-dark)}

/* Hero */
.hero{position:relative; overflow:hidden; min-height:860px; color:#fff; background:#03142f;}
.hero-bg{
  position:absolute; inset:0;
  background-image:
    linear-gradient(90deg, rgba(2,13,34,.96) 0%, rgba(2,13,34,.93) 28%, rgba(3,22,56,.70) 54%, rgba(3,22,56,.26) 100%),
    radial-gradient(circle at 17% 24%, rgba(239,51,72,.15) 0%, rgba(239,51,72,0) 24%),
    url('assets/hero-wave-v5.png');
  background-repeat:no-repeat;
  background-position:left center, left center, right center;
  background-size:cover, cover, cover;
  filter:saturate(1.02) contrast(1.02);
}
.hero-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:minmax(0, 760px) 1fr;
  align-items:center;
  min-height:860px;
  padding-top:220px;
  padding-bottom:96px;
}
.hero-copy{max-width:760px; margin:0 auto}
.eyebrow{
  margin:0 0 18px;
  color:var(--red);
  text-transform:uppercase;
  font-size:19px;
  font-weight:800;
  letter-spacing:.14em;
  line-height:1.2;
}
.hero h1{
  margin:0 0 24px;
  max-width:760px;
  font-size:clamp(54px, 5.7vw, 82px);
  line-height:1.01;
  letter-spacing:-.055em;
  color:#fff;
  text-shadow:0 10px 24px rgba(0,0,0,.22);
}
.lead{
  margin:0 auto 26px;
  max-width:720px;
  color:#edf4ff;
  font-size:23px;
  line-height:1.56;
}
.hero-actions{display:flex; gap:18px; flex-wrap:wrap; justify-content:center; margin-top:18px; margin-bottom:0}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:238px; padding:18px 28px; border-radius:14px;
  font-size:18px; font-weight:800; letter-spacing:.01em;
  border:2px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.btn:hover{transform:translateY(-2px)}
.btn.primary{background:linear-gradient(180deg, #f33949, #d51b2d); color:#fff; border-color:#f05463}
.btn.secondary{background:rgba(255,255,255,.03); color:#fff; border-color:rgba(255,255,255,.75)}
.trust-row{margin:8px 0 0; text-align:center}
.trust-row span{display:inline-block; font-size:30px; font-weight:800; color:#fff; letter-spacing:.01em}

/* Service cards under hero */
.service-preview{
  position:relative; z-index:3; background:linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding:0 0 74px;
}
.service-cards{
  display:grid; grid-template-columns:repeat(3,1fr); gap:24px;
  margin-top:-56px;
}
.service-card{
  background:#fff; border:1px solid rgba(10,52,113,.10); border-radius:22px;
  box-shadow:var(--shadow); padding:28px 26px;
  display:grid; grid-template-columns:122px 1fr; gap:24px; align-items:center;
}
.service-icon{
  width:110px; height:110px; border-radius:30px;
  display:grid; place-items:center;
  background:linear-gradient(145deg, rgba(10,52,113,.05), rgba(239,51,72,.04));
  border:1px solid rgba(10,52,113,.08);
}
.service-icon img{width:94px; height:94px; object-fit:contain;}
.service-card h3{
  margin:0; color:#081c48; font-size:21px; line-height:1.12; letter-spacing:-.02em;
}
.service-card h3::after{
  content:""; display:block; width:58px; height:3px; border-radius:999px; background:var(--red); margin-top:12px;
}
.service-card p{margin:12px 0 0; color:var(--muted); font-size:17px; line-height:1.55}

/* Two-column intro */
.split{
  display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:start;
}
.section-title h2,
.center-title h2,
.parts-head h2,
.partner h2,
.cta h2{
  margin:0; color:#081c48; letter-spacing:-.045em;
}
.section-title h2{font-size:clamp(44px,4.2vw,64px); line-height:1.02; max-width:650px}
.prose p{margin:0; color:#40506b; font-size:22px; line-height:1.7; max-width:620px}

/* Focused strategy */
.dark{background:linear-gradient(180deg, #f5f7fb 0%, #eef3fa 100%)}
.center-title{text-align:center; max-width:900px; margin:0 auto 38px}
.center-title h2{font-size:clamp(42px,4vw,60px); line-height:1.06; max-width:780px; margin:0 auto}
.cards.three{display:grid; grid-template-columns:repeat(3,1fr); gap:24px}
.card{
  background:#fff; border:1px solid rgba(10,52,113,.10); border-radius:22px; box-shadow:var(--shadow);
  padding:26px; min-height:260px;
}
.icon{
  width:76px; height:76px; border-radius:22px; display:grid; place-items:center;
  background:linear-gradient(145deg, rgba(10,52,113,.06), rgba(239,51,72,.04)); border:1px solid rgba(10,52,113,.08);
  margin-bottom:20px;
}
.icon img{width:60px; height:60px; object-fit:contain;}
.card h3{margin:0 0 12px; font-size:28px; line-height:1.15; letter-spacing:-.03em; color:#081c48}
.card p{margin:0; font-size:18px; line-height:1.6; color:#55647b}

/* Parts coverage */
.parts-head{
  display:grid; grid-template-columns:1.04fr .96fr; gap:56px; align-items:start; margin-bottom:30px;
}
.parts-head h2{font-size:clamp(40px,3.9vw,58px); line-height:1.04; max-width:620px}
.parts-head > p{margin:0; max-width:620px; color:#42516b; font-size:22px; line-height:1.65}
.catalog-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px}
.catalog{
  background:#fff; border:1px solid rgba(10,52,113,.12); border-top:4px solid var(--navy-2); border-radius:20px;
  box-shadow:var(--shadow); padding:26px 24px;
}
.catalog:nth-child(3){border-top-color:var(--navy-2)}
.catalog h3{margin:0 0 12px; font-size:28px; line-height:1.15; color:#081c48}
.catalog ul{margin:0; padding-left:20px; color:#55647b; font-size:17px; line-height:1.75}

/* Partner */
.partner{background:#fbfcfe}
.partner-grid{display:grid; grid-template-columns:1fr .9fr; gap:40px; align-items:center}
.partner h2{font-size:clamp(38px,3.8vw,54px); line-height:1.06; margin-bottom:18px}
.partner p:not(.eyebrow){margin:0; color:#465570; font-size:21px; line-height:1.65; max-width:720px}
.partner-card{
  background:#fff; border:1px solid rgba(10,52,113,.10); border-radius:24px; box-shadow:var(--shadow);
  padding:32px; min-height:250px; display:flex; flex-direction:column; justify-content:center; align-items:center; text-align:center;
}
.partner-card img{width:min(100%, 400px); margin-bottom:22px}
.partner-card p{font-size:18px; line-height:1.6; color:#55647b}

/* Process */
.process{background:#fff}
.steps{display:grid; grid-template-columns:repeat(4,1fr); gap:22px; margin-top:30px}
.step{
  position:relative; background:#fff; border:1px solid rgba(10,52,113,.12); border-radius:20px; box-shadow:var(--shadow); padding:28px 22px 24px;
}
.step span{
  display:inline-grid; place-items:center; width:44px; height:44px; border-radius:50%; background:var(--navy-2); color:#fff; font-size:18px; font-weight:800; margin-bottom:18px;
}
.step h3{margin:0 0 10px; font-size:26px; color:#081c48}
.step p{margin:0; font-size:18px; line-height:1.6; color:#55647b}

/* CTA / contact */
.cta{background:linear-gradient(180deg, #081c48 0%, #061736 100%); color:#fff}
.cta-card{padding:80px 0}
.cta .eyebrow{color:var(--red)}
.cta h2{color:#fff; font-size:clamp(40px,4.1vw,60px); line-height:1.06; max-width:860px; margin-bottom:18px}
.cta p:not(.eyebrow){max-width:900px; color:#eaf0fb; font-size:22px; line-height:1.65; margin:0 0 34px}
.contact-grid{display:grid; grid-template-columns:1fr 1fr 1fr; gap:22px; align-items:stretch}
.contact-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.16); border-radius:24px; padding:24px 22px; box-shadow:0 14px 30px rgba(0,0,0,.14);
  text-align:center;
}
.contact-label{margin:0 0 10px; text-transform:uppercase; letter-spacing:.14em; font-weight:800; font-size:19px; color:var(--red); text-align:center; line-height:1.2}
.top-gap{margin-top:20px}
.contact-value{display:block; font-size:20px; line-height:1.35; color:#fff; font-weight:600; letter-spacing:0; text-align:center; overflow-wrap:anywhere}
.phone-card{text-align:center; display:flex; flex-direction:column; justify-content:center}
.phone-main{font-size:24px; line-height:1.25; margin-top:8px}
.phone-main + .phone-main{margin-top:14px}
.contact-card span{display:block; color:#d7e0f4; font-size:16px; line-height:1.5}
.address-card strong{display:block; font-size:22px; color:#fff; margin-bottom:10px; text-align:center}
.details-card .contact-value{word-break:normal}

/* Footer */
.footer{background:#f5f7fb; border-top:1px solid rgba(4,23,54,.10);}
.footer-grid{display:flex; align-items:center; justify-content:space-between; gap:28px; padding:28px 0}
.footer img{width:270px; padding:10px 14px; background:#fff; border-radius:16px; border:1px solid rgba(10,52,113,.10); box-shadow:0 8px 18px rgba(4,23,54,.08)}
.footer p{margin:0; color:#40506b; font-size:16px; line-height:1.65; text-align:right}
.footer-address,.footer-contact{font-size:15px}

/* Responsive */
@media (max-width: 1180px){
  .brand img{max-width:38vw}
  .nav{gap:26px}
  .service-card{grid-template-columns:96px 1fr}
}
@media (max-width: 980px){
  .container{width:min(100% - 36px, 1240px)}
  .nav-wrap{min-height:98px; flex-wrap:wrap; justify-content:center; padding:12px 0}
  .brand img{width:340px; max-width:70vw}
  .nav{order:3; width:100%; overflow:auto; white-space:nowrap; padding-bottom:4px; justify-content:flex-start}
  .lang-switch{margin-left:auto}
  .hero{min-height:820px}
  .hero-grid{grid-template-columns:1fr; min-height:820px; padding-top:230px; padding-bottom:80px}
  .hero h1{font-size:48px}
  .lead{font-size:20px}
  .service-cards,.cards.three,.catalog-grid,.steps,.contact-grid,.partner-grid,.split,.parts-head{grid-template-columns:1fr}
  .service-cards{margin-top:-38px}
  .card,.catalog,.service-card{min-height:auto}
  .parts-head, .split, .partner-grid{gap:28px}
  .footer-grid{flex-direction:column; text-align:center}
  .footer p{text-align:center}
}
@media (max-width: 640px){
  .container{width:min(100% - 22px, 1240px)}
  .nav-wrap{min-height:92px}
  .brand img{width:270px; max-width:72vw}
  .nav a{font-size:15px}
  .lang{font-size:14px}
  .hero{min-height:780px}
  .hero-grid{padding-top:210px; min-height:780px; padding-bottom:60px}
  .hero h1{font-size:38px}
  .lead{font-size:18px}
  .eyebrow{font-size:17px}
  .btn{min-width:100%; width:100%; font-size:16px}
  .hero-actions{flex-direction:column}
  .service-card{grid-template-columns:1fr; text-align:left}
  .service-icon{width:96px; height:96px}
  .service-icon img{width:82px; height:82px}
  .section{padding:70px 0}
  .section-title h2,.center-title h2,.parts-head h2,.partner h2,.cta h2{font-size:34px}
  .prose p,.parts-head > p,.partner p:not(.eyebrow),.cta p:not(.eyebrow),.card p,.step p{font-size:18px}
  .card h3,.catalog h3{font-size:24px}
  .contact-value{font-size:20px}
  .phone-main{font-size:24px}
  .footer img{width:220px}
}


/* Video strategy section update */
.strategy-video-section{
  position:relative;
  overflow:hidden;
  background:#061e57 url('assets/focused-strategy-custom-bg.png') center center/cover no-repeat;
}
.section-video{display:none;}
.bg-video{display:none;}
.section-video-overlay{display:none;}
.strategy-video-section > .container{position:relative; z-index:1;}


/* Better top service icons */
.service-card{
  grid-template-columns:132px 1fr;
  gap:24px;
}
.service-icon{
  width:118px;
  height:118px;
  border-radius:0;
  background:transparent;
  border:0;
  box-shadow:none;
}
.service-icon img{
  width:112px;
  height:112px;
  object-fit:contain;
}

/* Focused strategy cards: centered and stronger icons */
.cards.three .card{
  text-align:center;
  padding:30px 24px 28px;
}
.cards.three .icon{
  width:86px;
  height:86px;
  border-radius:22px;
  margin:0 auto 18px;
  background:linear-gradient(145deg, rgba(10,52,113,.10), rgba(239,51,72,.07));
}
.cards.three .icon img{
  width:72px;
  height:72px;
}
.cards.three h3{
  text-align:center;
}
.cards.three p{
  text-align:center;
  font-size:18px;
}

@media (max-width:980px){
  .service-card{grid-template-columns:120px 1fr;}
  .service-icon{width:108px;height:108px;}
  .service-icon img{width:102px;height:102px;}
}
@media (max-width:640px){
  .service-card{grid-template-columns:1fr; text-align:left;}
  .service-icon{width:110px;height:110px; margin:0 0 8px;}
  .service-icon img{width:104px;height:104px;}
  .cards.three .card{text-align:center;}
}


@media (max-width:640px){
  .trust-row span{font-size:22px;}
}

/* Final hero alignment correction */
.hero-copy h1,
.hero-copy .lead{
  text-align:left;
}
.hero-copy .eyebrow{
  text-align:left;
}

/* Final focused strategy white text correction */
.strategy-video-section .center-title .eyebrow{
  color:var(--red);
}
.strategy-video-section .center-title h2{
  color:#ffffff;
  text-shadow:0 8px 22px rgba(0,0,0,.32);
}


/* Final polish overrides */
.strategy-video-section .center-title{
  padding:18px 24px 8px;
}
.strategy-video-section .center-title h2{
  color:#ffffff;
  text-shadow:0 8px 22px rgba(0,0,0,.32);
}
@media (max-width:980px){
  .contact-label{font-size:17px;}
  .contact-value{font-size:18px;}
  .phone-main{font-size:22px;}
  .address-card strong{font-size:20px;}
}
@media (max-width:640px){
  .eyebrow{font-size:16px;}
  .contact-label{font-size:16px;}
  .contact-value{font-size:17px;}
  .phone-main{font-size:20px;}
}

/* Final requested refinements: red, How We Work, Contact */
.eyebrow,
.contact-label,
.cta .eyebrow,
.strategy-video-section .center-title .eyebrow{
  color:var(--red) !important;
}

/* How We Work: center only numbers and titles; keep descriptions left aligned */
.step{
  text-align:left;
}
.step span{
  margin-left:auto !important;
  margin-right:auto !important;
}
.step h3{
  text-align:center !important;
  font-weight:700;
}
.step p{
  text-align:left !important;
}

/* Contact boxes: cleaner, less bold, tighter spacing */
.contact-card{
  padding:24px 26px;
  text-align:center;
}
.contact-label{
  margin:0 0 8px !important;
  font-size:16px !important;
  font-weight:600 !important;
  letter-spacing:.08em !important;
  line-height:1.2;
  text-align:center !important;
}
.contact-label.top-gap{
  margin-top:16px !important;
}
.contact-value{
  display:block;
  font-size:18px !important;
  font-weight:500 !important;
  line-height:1.35;
  letter-spacing:-.01em;
  text-align:center !important;
  overflow-wrap:anywhere;
}
.details-card .contact-value{
  font-size:17px !important;
}
.phone-card{
  gap:6px;
}
.phone-main{
  font-size:18px !important;
  font-weight:500 !important;
  line-height:1.35;
  margin-top:4px !important;
}
.phone-main + .phone-main{
  margin-top:6px !important;
}
.phone-card .phone-main span{
  display:inline !important;
  font-size:14px !important;
  line-height:1;
  margin-left:5px;
  color:#d7e0f4;
}
.address-card strong{
  font-size:18px !important;
  font-weight:600 !important;
  margin-bottom:8px !important;
  text-align:center !important;
}
.address-card span{
  font-size:14px !important;
  line-height:1.4 !important;
}
@media (max-width:980px){
  .contact-label{font-size:15px !important;}
  .contact-value{font-size:17px !important;}
  .phone-main{font-size:17px !important;}
}
@media (max-width:640px){
  .contact-label{font-size:15px !important;}
  .contact-value{font-size:16px !important;}
  .phone-main{font-size:16px !important;}
}

/* Prime Turbine Parts representation section */
.prime-partner{
  background:#fbfcfe;
}
.prime-partner .partner-copy p:not(.eyebrow){
  margin-bottom:18px;
}
.partner-points{
  margin:18px 0 0;
  padding-left:20px;
  color:#465570;
  font-size:18px;
  line-height:1.65;
}
.partner-points li{
  margin-bottom:8px;
}
.prime-card{
  align-items:center;
  gap:14px;
}
.prime-card img{
  width:min(100%, 460px);
  margin-bottom:12px;
  border-radius:18px;
}
.prime-card p{
  max-width:430px;
}
.partner-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:6px;
  padding:13px 18px;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(180deg, #f33949, #d51b2d);
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
}


/* Final number centering fix for How We Work */
.step span{
  display:grid !important;
  margin:0 auto 18px !important;
}


/* Final alignment fix for Market entry and Parts coverage */
.split .prose{
  padding-top:42px;
}
.parts-head > p{
  padding-top:40px;
}
.catalog{
  border-top-color:var(--navy-2) !important;
}
@media (max-width:980px){
  .split .prose,
  .parts-head > p{
    padding-top:0;
  }
}


/* Final user-requested hero alignment */
.hero-copy .trust-row,
.hero-copy .hero-actions{
  width:100%;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.hero-copy .hero-actions{
  justify-content:center;
}
.hero-copy .trust-row{
  text-align:center;
}

/* Request form section */
.request-form-section{
  background:#f8fafc;
}
.request-wrap{
  background:#fff;
  border:1px solid rgba(10,52,113,.10);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:42px 38px;
}
.request-title{margin-bottom:22px;}
.request-title h2{margin-bottom:14px;}
.request-intro{
  max-width:780px;
  margin:0 auto;
  color:#51617b;
  font-size:19px;
  line-height:1.65;
  text-align:center;
}
.request-form{margin-top:10px;}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px 20px;
}
.form-field{
  display:flex;
  flex-direction:column;
}
.form-field-full{grid-column:1 / -1;}
.form-label{
  margin:0 0 8px;
  color:#0a2349;
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
}
.form-field input,
.form-field textarea{
  width:100%;
  border:1px solid rgba(10,52,113,.18);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  color:#10213f;
  background:#fff;
}
.form-field textarea{resize:vertical; min-height:140px;}
.form-field input:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--navy-2);
  box-shadow:0 0 0 4px rgba(10,52,113,.08);
}
.request-actions{
  display:flex;
  justify-content:center;
  margin-top:22px;
}
.form-submit{min-width:260px;}

/* Prime Turbine Parts card final style */
.prime-card{
  background:linear-gradient(180deg, #072257 0%, #061736 100%);
  border:none;
}
.prime-card img{
  width:min(100%, 190px);
  margin:0 auto 18px;
  border-radius:0;
  display:block;
}
.prime-card p{
  color:#eef4ff;
  max-width:430px;
}

@media (max-width:980px){
  .form-grid{grid-template-columns:1fr;}
  .request-wrap{padding:34px 24px;}
}
@media (max-width:640px){
  .request-intro{font-size:17px;}
  .form-submit{min-width:100%; width:100%;}
}

.partner-link{display:none !important;}


/* Final requested alignment and layout fixes */
.hero-copy h1,
.hero-copy .lead,
.hero-copy .trust-row,
.hero-copy .hero-actions{
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
.hero-copy h1{
  margin-bottom:24px;
}
.hero-copy .lead{
  margin-bottom:24px;
}
.hero-copy .trust-row{
  margin-top:0;
  margin-bottom:18px;
  text-align:center;
}
.hero-copy .hero-actions{
  justify-content:center;
  margin-top:0;
}

/* Parts coverage list formatting */
.catalog ul li{margin-bottom:2px;}

/* Prime Turbine Parts box refinement */
.prime-card{
  justify-content:flex-start;
  padding:28px 28px 30px;
}
.prime-card img{
  width:min(100%, 190px);
  margin:0 auto 12px;
}
.prime-card p{
  color:#ffffff;
  font-size:20px;
  line-height:1.55;
  max-width:420px;
  margin:0 auto;
}

/* How we work boxes: slightly larger and more symmetrical */
.steps{
  gap:18px;
}
.step{
  min-height:236px;
  padding:28px 20px 24px;
}
.step h3{
  margin:0 0 10px;
}
.step p{
  font-size:17px !important;
  line-height:1.58;
}

/* Request form required fields retained with updated assets package */
.form-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

@media (max-width:980px){
  .hero-copy h1,
  .hero-copy .lead,
  .hero-copy .trust-row,
  .hero-copy .hero-actions{
    max-width:100%;
  }
  .steps{
    gap:16px;
  }
  .step{
    min-height:auto;
  }
}


/* Final requested adjustments June 2026 */
.hero-copy .trust-row,
.hero-copy .hero-actions{
  transform:translateX(-24px);
}
.hero-copy .trust-row span{
  display:inline-block;
}

.prime-card{
  background:#1d2d46 !important;
  border:1px solid rgba(255,255,255,.08) !important;
  box-shadow:0 18px 34px rgba(0,0,0,.18);
}
.prime-card p,
.prime-card *:not(img){
  color:#ffffff !important;
}
.prime-card p{
  font-size:21px !important;
  line-height:1.5 !important;
  margin-top:0 !important;
}
.prime-card img{
  margin:0 auto 8px !important;
}

.process .container{
  max-width:1300px;
}
.steps{
  gap:16px !important;
}
.step{
  min-height:242px !important;
  padding:30px 18px 26px !important;
}
.step p{
  font-size:16.5px !important;
  line-height:1.55 !important;
}

.form-label.required,
.form-label{
  position:relative;
}
.mandatory-note{
  margin:14px 0 0;
  color:#63748f;
  font-size:14px;
  line-height:1.4;
}

@media (max-width:980px){
  .hero-copy .trust-row,
  .hero-copy .hero-actions{
    transform:none;
  }
  .process .container{
    max-width:var(--container);
  }
  .step{
    min-height:auto !important;
  }
}


/* Mandatory fields note final position */
.mandatory-note{
  grid-column:1 / -1;
  margin:-8px 0 0 !important;
  padding:0;
  color:#63748f;
  font-size:14px;
  line-height:1.35;
  text-align:left !important;
  justify-self:start;
}


/* Final PTP spacing and recheck refinements */
.prime-card img{
  width:min(100%, 255px) !important;
  margin:0 auto 0 !important;
}
.prime-card p{
  margin-top:0 !important;
  padding-top:0 !important;
}
.request-intro{
  margin-bottom:2px;
}


/* Navigation anchor alignment for fixed header */
#home,
#company,
#solutions,
#parts,
#prime-turbine-parts,
#request-form,
#contact{
  scroll-margin-top:130px;
}
@media (max-width:980px){
  #home,
  #company,
  #solutions,
  #parts,
  #prime-turbine-parts,
  #request-form,
  #contact{
    scroll-margin-top:165px;
  }
}

/* Mobile header / hero separation correction — 2026-06-09 */
@media (max-width: 640px){
  .site-header{
    position: fixed;
  }

  .nav-wrap{
    min-height: 0;
    padding: 12px 0 14px;
    row-gap: 14px;
  }

  .brand{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .brand img{
    width: 250px;
    max-width: 76vw;
  }

  .lang-switch{
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .nav{
    width: 100%;
    gap: 28px;
    padding: 8px 4px 10px;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar{
    display: none;
  }

  .hero{
    min-height: 860px;
  }

  .hero-grid{
    min-height: 860px;
    padding-top: 285px;
    padding-bottom: 64px;
  }
}


/* Safe repair package - Vortex requested corrections - 2026-06-11 */
.catalog-grid{
  align-items:start;
}
.catalog{
  height:auto;
}
.catalog-list-compact{
  font-size:16px !important;
  line-height:1.55 !important;
  padding-left:22px !important;
}
.catalog-list-compact li{
  margin-bottom:1px !important;
}
.component-list{
  line-height:1.62 !important;
}
.address-card span:last-child{
  margin-top:2px;
}
.footer-contact{
  font-size:15px;
}
@media (max-width:980px){
  .catalog-list-compact{
    font-size:16px !important;
    line-height:1.6 !important;
  }
}

/* New Vortex footer — rebuilt according to footer specifications */
.site-footer-vortex{
  background:#ffffff;
  color:#081c48;
  border-top:2px solid var(--red);
}
.footer-vortex-grid{
  display:grid;
  grid-template-columns:1.35fr .9fr .95fr .8fr;
  gap:44px;
  align-items:start;
  padding:38px 0 30px;
}
.footer-vortex-brand a{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  width:min(100%, 325px);
}
.footer-vortex-brand{
  align-self:center;
  display:flex;
  align-items:center;
  min-height:100%;
}
.footer-vortex-brand img{
  display:block;
  width:100%;
  max-width:295px;
  height:auto;
}
.footer-vortex-column h3{
  margin:0 0 18px;
  color:#081c48;
  font-size:15px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.footer-vortex-column a{
  display:block;
  width:max-content;
  max-width:100%;
  color:#22324d;
  font-size:16px;
  line-height:1.35;
  font-weight:600;
  text-decoration:none;
  margin:0 0 11px;
  transition:color .2s ease, transform .2s ease;
}
.footer-vortex-column a:hover{
  color:var(--red);
  transform:translateX(2px);
}
.footer-vortex-back{
  color:var(--red) !important;
  margin-top:18px !important;
  font-weight:800 !important;
}
.footer-social-links{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.social-icon-link{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  width:44px !important;
  height:44px;
  margin:0 !important;
  text-decoration:none;
  border-radius:14px;
  overflow:hidden;
  background:transparent;
  box-shadow:0 10px 18px rgba(4,23,54,.14), inset 0 1px 0 rgba(255,255,255,.28);
  transition:transform .2s ease, box-shadow .2s ease !important;
}
.social-icon-link svg{
  width:44px;
  height:44px;
  display:block;
}
.social-icon-link:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(4,23,54,.20);
}
.footer-vortex-bottom{
  border-top:1px solid rgba(8,28,72,.12);
  padding:18px 0 24px;
}
.footer-vortex-bottom p{
  margin:0;
  color:#40506b;
  font-size:15px;
  line-height:1.5;
}

@media (max-width:980px){
  .footer-vortex-grid{
    grid-template-columns:1fr 1fr;
    gap:30px 36px;
  }
  .footer-vortex-brand{
    grid-column:1 / -1;
  }
}
@media (max-width:640px){
  .footer-vortex-grid{
    grid-template-columns:1fr;
    gap:24px;
    padding:32px 0 24px;
  }
  .footer-vortex-brand a{
    width:min(100%, 285px);
  }
  .footer-vortex-column a{
    width:auto;
  }
}
