/* ===== PI FLUIDPOWER — REDESIGNED STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@400;500;600;700&family=Roboto+Mono:wght@400;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:        #06192e;
  --navy-mid:    #0a2440;
  --navy-light:  #122d4d;
  --orange:      #f55f00;
  --orange-glow: rgba(245,95,0,.18);
  --orange-lite: #ff7a20;
  --off-white:   #f4f5f6;
  --white:       #ffffff;
  --text:        #0f2235;
  --muted:       #4a5c6e;
  --border:      #dde2e8;
  --border-dark: rgba(255,255,255,.12);
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-mono:   'Roboto Mono', monospace;
  --radius:      4px;
  --shadow:      0 4px 24px rgba(6,25,46,.12);
  --shadow-lg:   0 12px 48px rgba(6,25,46,.22);
}

body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(100%, 1400px); margin-inline: auto; padding-inline: clamp(18px, 4vw, 56px); }

/* HEADER */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--border-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-badge { width: 52px; height: 52px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -.02em; clip-path: polygon(0 0, 100% 0, 100% 80%, 88% 100%, 0 100%); flex-shrink: 0; }
.brand-text strong { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 800; color: #fff; letter-spacing: .03em; text-transform: uppercase; line-height: 1; }
.brand-text span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #8fa8be; font-weight: 600; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; justify-content: flex-end; flex: 1; }
.main-nav a { font-family: var(--font-body); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: #c0d0df; padding: 6px 12px; border-radius: var(--radius); transition: color .2s, background .2s; white-space: nowrap; }
.main-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.main-nav a.active { color: var(--orange); }
.enquire-btn { background: var(--orange) !important; color: #fff !important; font-family: var(--font-display) !important; font-size: 15px !important; font-weight: 700 !important; text-transform: uppercase !important; letter-spacing: .08em !important; padding: 12px 22px !important; border-radius: 0 !important; clip-path: polygon(0 0,100% 0,100% 72%,93% 100%,0 100%); transition: background .2s; flex-shrink: 0; }
.enquire-btn:hover { background: var(--orange-lite) !important; }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; flex-shrink: 0; }
.menu-btn span { display: block; width: 26px; height: 2px; background: #fff; transition: transform .25s, opacity .25s; border-radius: 1px; }
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { background: var(--navy); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; min-height: calc(100vh - 74px); }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,7vw,100px) clamp(28px,5vw,72px); position: relative; z-index: 2; background: linear-gradient(135deg, #04131f 0%, var(--navy) 60%, #0a2240 100%); }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero-eyebrow-line { width: 40px; height: 3px; background: var(--orange); flex-shrink: 0; }
.hero-eyebrow span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); }
.hero-title { font-family: var(--font-display); font-size: clamp(52px, 6.5vw, 96px); font-weight: 900; line-height: .9; text-transform: uppercase; color: #fff; margin-bottom: 32px; letter-spacing: -.01em; }
.hero-title .line-accent { color: var(--orange); display: block; }
.hero-title .line-white { display: block; }
.hero-desc { font-size: clamp(15px, 1.2vw, 18px); line-height: 1.7; color: #a8bece; max-width: 480px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 16px 32px; clip-path: polygon(0 0,100% 0,100% 75%,94% 100%,0 100%); transition: background .2s, transform .15s; white-space: nowrap; }
.btn-primary:hover { background: var(--orange-lite); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 14px 32px; border: 2px solid rgba(255,255,255,.28); transition: border-color .2s; white-space: nowrap; }
.btn-secondary:hover { border-color: rgba(255,255,255,.6); }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--border-dark); padding-top: 32px; }
.hero-stat-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--orange); line-height: 1; letter-spacing: -.02em; }
.hero-stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #7a98b0; margin-top: 4px; font-weight: 600; }
.hero-right { position: relative; overflow: hidden; background: #0a2035; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .75; transition: transform 8s ease; }
.hero-right:hover img { transform: scale(1.03); }
.hero-badges { position: absolute; right: 0; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; z-index: 4; }
.hero-badge { background: rgba(6,25,46,.88); border-left: 3px solid var(--orange); color: #fff; font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; padding: 20px 14px; text-align: center; min-width: 110px; border-bottom: 1px solid var(--border-dark); line-height: 1.3; }
.hero-badge:last-child { border-bottom: none; }

/* SECTION COMMON */
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--orange); }
.section-heading { font-family: var(--font-display); font-size: clamp(34px, 3.5vw, 54px); font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -.01em; }
.accent { color: var(--orange); }

/* INTRO STRIP */
.intro-strip { background: var(--navy-mid); padding: 32px 0; border-bottom: 2px solid rgba(245,95,0,.25); }
.intro-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.intro-strip-headline { font-family: var(--font-display); font-size: clamp(22px, 2vw, 30px); font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .02em; }
.intro-strip-headline span { color: var(--orange); }
.intro-strip-text { font-size: 15px; color: #8fa8be; max-width: 480px; line-height: 1.6; }

/* PRODUCTS */
.products-section { padding: 80px 0; background: var(--off-white); }
.products-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.products-intro p { font-size: 17px; color: var(--muted); line-height: 1.65; margin-top: 16px; }
.view-all-link { font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); display: flex; align-items: center; gap: 8px; white-space: nowrap; transition: gap .2s; }
.view-all-link:hover { gap: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.product-card { background: var(--white); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: transform .25s, box-shadow .25s; border-bottom: 3px solid transparent; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-bottom-color: var(--orange); z-index: 2; }
.product-card-image { background: #eaecef; padding: 36px; display: flex; align-items: center; justify-content: center; min-height: 220px; overflow: hidden; }
.product-card-image img { max-height: 160px; object-fit: contain; transition: transform .4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h2 { font-family: var(--font-display); font-size: clamp(22px, 1.9vw, 28px); font-weight: 800; text-transform: uppercase; color: var(--navy); line-height: 1.05; margin-bottom: 12px; }
.product-divider { width: 40px; height: 3px; background: var(--orange); margin-bottom: 16px; }
.product-card-body p { font-size: 15px; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 20px; }
.product-link { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; transition: color .2s, gap .2s; }
.product-link:hover { color: var(--orange); gap: 14px; }

/* INDUSTRIES */
.industries-section { background: var(--navy); }
.industries-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.industries-left { padding: clamp(48px,6vw,80px) clamp(28px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.industries-left .section-heading { color: #fff; margin-bottom: 36px; }
.industries-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.industry-item { background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); padding: 18px 20px; display: flex; align-items: center; gap: 12px; transition: background .2s; }
.industry-item:hover { background: rgba(245,95,0,.1); border-color: rgba(245,95,0,.3); }
.industry-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
.industry-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; text-transform: uppercase; color: #d0dce8; letter-spacing: .04em; line-height: 1.2; }
.industries-right { position: relative; overflow: hidden; }
.industries-right img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.industries-right-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0%, transparent 40%); }

/* PROCESS */
.process-section { padding: 80px 0; background: var(--white); }
.process-header { text-align: center; margin-bottom: 56px; }
.process-header p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 16px auto 0; line-height: 1.65; }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 44px; left: calc(10% + 20px); right: calc(10% + 20px); height: 2px; background: linear-gradient(90deg, var(--orange), #ffb980, var(--orange)); z-index: 0; }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.process-icon-wrap { width: 88px; height: 88px; background: var(--white); border: 2px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .25s, border-color .25s, box-shadow .25s; position: relative; }
.process-step:hover .process-icon-wrap { background: var(--orange-glow); border-color: var(--orange); box-shadow: 0 0 0 6px rgba(245,95,0,.08); }
.process-step-num { position: absolute; top: -6px; right: -6px; width: 22px; height: 22px; background: var(--orange); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.process-icon-wrap img { width: 40px; height: 40px; }
.process-step h3 { font-family: var(--font-display); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--navy); line-height: 1.2; letter-spacing: .03em; }

/* SPLIT */
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 420px; }
.split-light { background: var(--off-white); padding: clamp(48px,6vw,80px) clamp(28px,5vw,72px); display: flex; flex-direction: column; justify-content: center; }
.split-light .section-heading { margin-bottom: 20px; }
.split-light p { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 480px; margin-bottom: 32px; }
.split-dark { background: var(--navy); padding: clamp(48px,6vw,80px) clamp(28px,5vw,72px); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; }
.split-dark::before { content: ''; position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(245,95,0,.15) 0%, transparent 70%); pointer-events: none; }
.split-dark .section-heading { color: #fff; margin-bottom: 20px; }
.split-dark p { font-size: 17px; color: #8fa8be; line-height: 1.7; max-width: 480px; }
.split-image { position: relative; overflow: hidden; min-height: 320px; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }

/* CAPABILITY */
.capability-section { padding: 80px 0; background: var(--navy-mid); }
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cap-card { background: rgba(255,255,255,.04); border: 1px solid var(--border-dark); padding: 36px 30px; transition: background .25s, border-color .25s; position: relative; overflow: hidden; }
.cap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.cap-card:hover { background: rgba(255,255,255,.07); border-color: rgba(245,95,0,.3); }
.cap-card:hover::before { transform: scaleX(1); }
.cap-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; font-weight: 600; }
.cap-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1.15; margin-bottom: 14px; letter-spacing: .02em; }
.cap-card p { font-size: 15px; color: #7a98b0; line-height: 1.65; }

/* CTA BANNER */
.cta-banner { background: var(--orange); padding: 56px 0; overflow: hidden; position: relative; }
.cta-banner::before { content: ''; position: absolute; top: -40px; right: -40px; width: 320px; height: 320px; background: rgba(255,255,255,.06); border-radius: 50%; pointer-events: none; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: .95; }
.cta-copy p { font-size: 16px; color: rgba(255,255,255,.8); margin-top: 10px; line-height: 1.55; }
.btn-white { display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--orange); font-family: var(--font-display); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 18px 36px; transition: transform .15s, box-shadow .15s; white-space: nowrap; flex-shrink: 0; clip-path: polygon(0 0,100% 0,100% 75%,94% 100%,0 100%); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.15); }

/* INNER PAGES */
.inner-hero { background: var(--navy); padding: clamp(56px,8vw,96px) 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: #6a8ca8; margin-bottom: 20px; font-weight: 600; }
.breadcrumb a { color: #6a8ca8; transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: #3a5066; }
.inner-hero h1 { font-family: var(--font-display); font-size: clamp(44px, 5vw, 72px); font-weight: 900; text-transform: uppercase; color: #fff; line-height: .95; margin-bottom: 20px; }
.inner-lead { font-size: clamp(16px, 1.3vw, 20px); color: #8fa8be; max-width: 720px; line-height: 1.65; }
.inner-content { padding: 72px 0; background: var(--off-white); }
.inner-card { background: var(--white); border: 1px solid var(--border); padding: clamp(24px,3vw,44px); margin-bottom: 20px; }
.inner-card h2, .inner-card h3 { font-family: var(--font-display); text-transform: uppercase; margin-bottom: 14px; }
.inner-card p, .inner-card li { font-size: 17px; line-height: 1.65; color: var(--muted); }
.inner-card ul { padding-left: 20px; }
.inner-card.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.product-detail { display: grid; grid-template-columns: 40% 60%; background: var(--white); border: 1px solid var(--border); margin-bottom: 20px; overflow: hidden; }
.product-detail-image { background: var(--off-white); padding: 32px; display: flex; align-items: center; justify-content: center; }
.product-detail-image img { max-height: 320px; object-fit: contain; }
.product-detail-copy { padding: clamp(24px,3vw,44px); }
.product-detail-copy h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); font-weight: 900; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; line-height: 1; }
.product-detail-copy p, .product-detail-copy li { font-size: 16px; line-height: 1.65; color: var(--muted); }
.product-detail-copy ul { padding-left: 20px; margin: 10px 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 20px; }
.detail-grid h3 { font-family: var(--font-display); font-size: 16px; text-transform: uppercase; margin-bottom: 8px; color: var(--navy); }
.industry-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.industry-page-item { background: var(--white); border-top: 4px solid var(--orange); padding: 28px 24px; font-family: var(--font-display); font-weight: 800; font-size: 18px; text-transform: uppercase; color: var(--navy); transition: background .2s; }
.industry-page-item:hover { background: var(--off-white); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.process-box { background: var(--white); border-top: 4px solid var(--orange); padding: 28px 24px; font-family: var(--font-display); font-weight: 800; font-size: 17px; text-transform: uppercase; color: var(--navy); transition: background .2s; }
.process-box:hover { background: var(--off-white); }
.contact-grid { display: grid; grid-template-columns: 38% 62%; gap: 20px; }
.contact-card { background: var(--white); border: 1px solid var(--border); padding: 32px; }
.contact-card.dark { background: var(--navy); color: #fff; border-color: var(--navy); }
.contact-card.dark a { color: #8fa8be; }
.contact-card.dark a:hover { color: var(--orange); }
.contact-card h2 { font-family: var(--font-display); font-size: 32px; text-transform: uppercase; margin-bottom: 16px; }
.contact-card p { font-size: 16px; line-height: 1.65; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--navy); }
input, textarea, select { width: 100%; padding: 13px 14px; border: 1.5px solid var(--border); background: var(--white); font: inherit; font-size: 16px; color: var(--text); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,95,0,.1); }
textarea { resize: vertical; min-height: 120px; }
.form-btn { cursor: pointer; background: var(--orange); color: #fff; font-family: var(--font-display); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: 16px; border: none; transition: background .2s; border-radius: var(--radius); }
.form-btn:hover { background: var(--orange-lite); }
.notice { background: #e8fff3; border: 1px solid #82d4a4; color: #145c35; padding: 12px 14px; font-size: 15px; border-radius: var(--radius); }

/* FOOTER */
.site-footer { background: #030e1a; color: #9ab0c4; padding-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-badge { width: 44px; height: 44px; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #fff; clip-path: polygon(0 0,100% 0,100% 78%,86% 100%,0 100%); }
.footer-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #6a8ca8; max-width: 320px; margin-bottom: 20px; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; color: #6a8ca8; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 14px; line-height: 1.7; color: #6a8ca8; margin-bottom: 8px; }
.footer-col p a { display: inline; }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #3d5a70; }

/* RESPONSIVE */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 400px; order: -1; }
  .hero-badges { flex-direction: row; right: auto; top: auto; bottom: 0; left: 0; transform: none; }
  .hero-badge { min-width: auto; flex: 1; border-left: none; border-top: 3px solid var(--orange); border-right: 1px solid var(--border-dark); font-size: 10px; padding: 12px 8px; }
  .hero-badge:last-child { border-right: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
}
@media (max-width: 1024px) {
  .menu-btn { display: flex; }
  .main-nav { display: none; position: fixed; top: 74px; left: 0; right: 0; background: var(--navy-mid); flex-direction: column; align-items: flex-start; padding: 16px; gap: 4px; border-bottom: 2px solid var(--orange); z-index: 90; max-height: calc(100vh - 74px); overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav a { width: 100%; padding: 12px 16px; font-size: 15px; }
  .enquire-btn { width: 100% !important; text-align: center !important; clip-path: none !important; margin-top: 8px !important; }
  .industries-inner { grid-template-columns: 1fr; }
  .industries-right { min-height: 260px; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 300px; }
  .product-detail { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cap-grid, .industry-page-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .header-inner { height: 64px; }
  .brand-badge { width: 42px; height: 42px; font-size: 22px; }
  .brand-text strong { font-size: 16px; }
  .brand-text span { font-size: 9px; }
  .hero-left { padding: 40px 18px 48px; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-secondary { clip-path: none; width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .product-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-icon-wrap { width: 72px; height: 72px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .btn-white { clip-path: none; width: 100%; justify-content: center; }
  .inner-card.two-col, .detail-grid { grid-template-columns: 1fr; }
  .process-list, .industry-page-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .intro-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-list, .industry-page-grid { grid-template-columns: 1fr; }
  .hero-badges { display: none; }
  .hero-stats { border-top: none; padding-top: 0; }
}
