:root {
  --black: #05080c;
  --ink: #10141a;
  --muted: #66707c;
  --line: #e7e9ed;
  --white: #ffffff;
  --soft: #f5f6f8;
  --orange: #ff6a00;
  --orange-dark: #d94f00;
  --shadow: 0 18px 50px rgba(5, 8, 12, 0.16);
  --font: "Inter", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar { background: #020408; color: #c9d0d8; font-size: 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar .container, .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-left, .topbar-right, .socials { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.dot { color: var(--orange); font-weight: 800; }
.socials a { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--white); font-size: 11px; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(5,8,12,.94); backdrop-filter: blur(14px); box-shadow: 0 10px 30px rgba(0,0,0,.22); }
.nav-inner { width: min(1460px, calc(100% - 32px)); min-height: 78px; padding: 6px 0 8px; gap: 14px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); min-width: 230px; }
.brand-logo { width: 220px; height: 70px; object-fit: contain; flex: 0 0 auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange); border: 2px solid var(--orange); transform: rotate(45deg); font-weight: 900; }
.brand-mark span { transform: rotate(-45deg); }
.brand strong { display: block; font-size: 17px; line-height: 1.05; letter-spacing: 0; }
.brand small { display: block; margin-top: 4px; color: #aeb7c2; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; }
.site-footer .brand-logo { width: 240px; height: 70px; max-height: none; object-fit: contain; }
.home-page .topbar,
.home-page .site-header {
  position: fixed;
  left: 0;
  right: 0;
  transition: top .25s ease, transform .25s ease, opacity .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}
.home-page .topbar {
  top: 0;
  z-index: 61;
  background: transparent;
  border-bottom-color: rgba(255,255,255,.12);
}
.home-page .site-header {
  top: 33px;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.home-page.header-scrolled .topbar {
  background: #020408;
  border-bottom-color: rgba(255,255,255,.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
}
.home-page.header-scrolled .site-header {
  top: 0;
  background: rgba(5,8,12,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.nav-menu { display: flex; align-items: center; justify-content: center; gap: 0; list-style: none; margin: 0; padding: 0; white-space: nowrap; }
.nav-menu > li { position: relative; }
.nav-menu a { color: #f2f4f7; display: flex; align-items: center; gap: 5px; padding: 28px 10px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.nav-menu a:hover, .nav-menu a.active { color: var(--orange); }
.dropdown { position: absolute; left: 0; top: 100%; width: 310px; max-height: calc(100vh - 110px); overflow-y: auto; background: var(--white); list-style: none; padding: 10px; margin: 0; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .22s ease; }
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { color: var(--ink); padding: 10px 12px; border-radius: 4px; }
.dropdown a:hover { background: #fff1e8; }
.dropdown span { display: block; color: var(--ink); padding: 9px 12px; font-size: 12px; font-weight: 700; line-height: 1.35; }
.industries-dropdown .dropdown { width: 360px; }
.dropdown-heading { padding: 8px 12px 6px; color: var(--orange); font-size: 11px; font-weight: 900; text-transform: uppercase; border-bottom: 1px solid var(--line); margin-bottom: 4px; }

@media (min-width: 1051px) and (max-width: 1260px) {
  .nav-inner { width: min(100% - 24px, 1220px); gap: 8px; }
  .brand { min-width: 180px; }
  .brand-logo { width: 176px; height: 56px; }
  .nav-menu a { padding-left: 7px; padding-right: 7px; font-size: 10px; }
  .nav-cta { display: none; }
}
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: 0; border-radius: 3px; padding: 13px 20px; background: var(--orange); color: var(--white); font-weight: 900; font-size: 12px; text-transform: uppercase; cursor: pointer; transition: .22s ease; }
.btn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn.dark { background: var(--black); }
.btn.ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.28); }
.btn.light { background: var(--white); color: var(--black); border: 1px solid var(--line); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: var(--white); font-size: 24px; }
.hero, .page-hero { position: relative; color: var(--white); background: linear-gradient(90deg, rgba(2,4,8,.95), rgba(2,4,8,.55)), var(--hero-img); background-size: cover; background-position: center; overflow: hidden; }
.hero { min-height: 640px; display: flex; align-items: center; }
.hero:after, .page-hero:after { content: ""; position: absolute; inset: auto 0 0; height: 120px; background: linear-gradient(0deg, rgba(5,8,12,.7), transparent); pointer-events: none; }
.hero-content { position: relative; z-index: 1; width: min(620px,100%); padding: 70px 0 120px; }
.home-hero { min-height: 690px; align-items: flex-start; background-image: linear-gradient(90deg, rgba(2,4,8,.98) 0%, rgba(2,4,8,.82) 30%, rgba(2,4,8,.38) 58%, rgba(2,4,8,.76) 100%), var(--hero-img); background-position: center right; }
.home-hero:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,4,8,.2), rgba(2,4,8,.18) 52%, rgba(2,4,8,.92)); pointer-events: none; }
.home-hero:after { height: 210px; background: linear-gradient(0deg, #05080c 0%, rgba(5,8,12,.82) 42%, transparent); }
.home-hero .container { position: relative; z-index: 1; }
.home-hero .hero-content { width: min(570px,100%); padding: 190px 0 205px; }
.eyebrow { color: var(--orange); text-transform: uppercase; font-weight: 900; font-size: 13px; letter-spacing: 1.1px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1, .page-hero h1 { margin: 10px 0 12px; font-size: clamp(44px,7vw,86px); line-height: .95; letter-spacing: 0; }
.home-hero .eyebrow { font-size: 14px; letter-spacing: 1.4px; margin-bottom: 20px; }
.home-hero h1 { font-size: clamp(52px,6.6vw,82px); line-height: .98; margin-bottom: 22px; font-weight: 950; }
.hero h1 span { color: var(--orange); }
.hero h2 { margin: 0 0 20px; font-size: clamp(22px,3vw,34px); }
.home-hero h2 { font-size: clamp(25px,3vw,31px); line-height: 1.15; margin-bottom: 24px; }
.hero p { color: #d8dde5; max-width: 560px; }
.home-hero p { color: #eef2f6; max-width: 520px; font-size: 15px; line-height: 1.75; }
.hero-actions, .section-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.play { width: 42px; height: 42px; border-radius: 50%; background: var(--white); color: var(--black); display: grid; place-items: center; font-size: 13px; }
.home-hero .hero-actions { gap: 18px; margin-top: 34px; }
.hero-btn { min-height: 55px; padding: 16px 26px; box-shadow: 0 12px 28px rgba(255,106,0,.22); }
.video-btn { min-height: 55px; padding: 10px 24px 10px 13px; border-color: rgba(255,255,255,.34); background: rgba(5,8,12,.32); }
.video-btn:hover { background: rgba(255,255,255,.08); }
.feature-strip { position: relative; z-index: 2; margin-top: -86px; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); background: rgba(5,8,12,.92); border: 1px solid rgba(255,255,255,.1); }
.feature-box { color: var(--white); padding: 25px; border-right: 1px solid rgba(255,255,255,.1); }
.feature-box:last-child { border-right: 0; }
.icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--orange); border: 1px solid rgba(255,106,0,.35); margin-bottom: 13px; font-weight: 900; }
.feature-box h3, .service-card h3, .product-card h3 { font-size: 15px; text-transform: uppercase; margin-bottom: 6px; }
.feature-box p { margin: 0; color: #b9c0ca; font-size: 13px; }
.home-feature-strip { margin-top: -150px; padding-bottom: 18px; }
.home-feature-grid { gap: 8px; background: transparent; border: 0; }
.home-feature-grid .feature-box { position: relative; min-height: 190px; padding: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.12); background: #05080c; box-shadow: inset 0 -90px 80px rgba(2,4,8,.78); }
.home-feature-grid .feature-box:before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,8,12,.08) 0%, rgba(5,8,12,.34) 42%, rgba(5,8,12,.92) 100%); transition: .25s ease; }
.home-feature-grid .feature-box:hover:before { background: linear-gradient(180deg, rgba(5,8,12,.02) 0%, rgba(5,8,12,.24) 40%, rgba(5,8,12,.86) 100%); }
.feature-box-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.02); }
.feature-box-content { position: absolute; left: 20px; right: 18px; bottom: 18px; z-index: 2; }
.home-feature-grid .icon { width: 50px; height: 50px; margin-bottom: 12px; border: 0; border-radius: 3px; background: var(--orange); color: var(--white); font-size: 27px; box-shadow: 0 12px 24px rgba(255,106,0,.28); }
.home-feature-grid .feature-box h3 { color: var(--white); font-size: 16px; line-height: 1.1; margin-bottom: 5px; }
.home-feature-grid .feature-box p { color: #eef2f6; font-size: 14px; line-height: 1.35; max-width: 240px; }
.section { padding: 88px 0; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--black); color: var(--white); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.section-title { margin-bottom: 36px; }
.section-title.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: clamp(28px,4vw,44px); line-height: 1.12; margin-bottom: 12px; }
.section-title p, .text-muted { color: var(--muted); }
.about-company-copy { display: grid; gap: 14px; color: var(--muted); margin: 18px 0 24px; }
.about-company-copy p { margin: 0; }
.dark .section-title p, .dark .text-muted { color: #b7c0cc; }
.media-frame { position: relative; overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); }
.media-frame img { aspect-ratio: 4/3; object-fit: cover; transition: .5s ease; }
.media-frame:hover img, .product-card:hover img { transform: scale(1.05); }
.check-list { display: grid; gap: 10px; padding: 0; margin: 22px 0; list-style: none; }
.check-list li:before { content: "+"; color: var(--orange); font-weight: 900; margin-right: 10px; }
.product-grid, .service-grid, .gallery-grid, .quality-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card, .service-card, .quality-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; transition: .25s ease; }
.product-card:hover, .service-card:hover, .quality-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(255,106,0,.3); }
.product-card img { height: 220px; object-fit: cover; transition: .45s ease; }
.card-body { padding: 22px; }
.card-body p { color: var(--muted); font-size: 14px; }
.link { color: var(--orange); font-weight: 900; font-size: 12px; text-transform: uppercase; }
.stats { display: grid; grid-template-columns: repeat(5,1fr); background: var(--black); color: var(--white); }
.stat { padding: 30px 18px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 31px; line-height: 1; }
.stat span { color: #aeb7c2; font-size: 11px; text-transform: uppercase; }
.page-hero { min-height: 310px; display: flex; align-items: center; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { color: #cfd5dd; font-size: 12px; text-transform: uppercase; }
.breadcrumb span { color: var(--orange); }
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 34px; }
.sidebar { align-self: start; background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 18px; position: sticky; top: 104px; }
.sidebar h3 { margin-bottom: 14px; font-size: 15px; text-transform: uppercase; }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list a { display: block; padding: 12px 14px; border-radius: 4px; color: var(--muted); font-weight: 700; font-size: 14px; }
.category-list a:hover, .category-list a.active { background: var(--orange); color: var(--white); }
.detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.detail-image img { height: 520px; object-fit: cover; border-radius: 6px; }
.thumb-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 16px; }
.thumb-grid img, .gallery-grid img { height: 170px; object-fit: cover; border-radius: 5px; }
.product-detail-main { display: grid; gap: 34px; }
.product-summary { display: grid; gap: 28px; }
.seo-section { display: grid; gap: 18px; }
.seo-section h2 { font-size: clamp(24px,3vw,34px); margin-bottom: 6px; }
.seo-section h3 { font-size: 18px; margin-bottom: 8px; }
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 22px; }
.info-card p { color: var(--muted); font-size: 14px; margin-bottom: 0; }
.spec-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.spec-table th, .spec-table td { padding: 15px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 220px; background: #f7f8fa; text-transform: uppercase; font-size: 12px; letter-spacing: .4px; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 16px 18px; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: var(--muted); margin: 10px 0 0; }
.related-products { display: flex; gap: 10px; flex-wrap: wrap; }
.related-products a { border: 1px solid var(--line); border-radius: 4px; padding: 9px 12px; font-size: 13px; font-weight: 800; }
.related-products a:hover { color: var(--orange); border-color: rgba(255,106,0,.42); }
.wide-media { overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); }
.wide-media img { width: 100%; min-height: 260px; max-height: 520px; object-fit: cover; object-position: center; }
.map-frame { overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); min-height: 430px; background: var(--soft); }
.map-frame iframe { display: block; width: 100%; height: 430px; border: 0; }
.industry-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 0; margin: 0; list-style: none; }
.industry-list li { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 11px 12px; font-weight: 800; font-size: 13px; }
.brochure-note { background: #101825; color: var(--white); border-radius: 6px; padding: 28px; }
.brochure-note p { color: #d7dee8; margin-bottom: 0; }
.catalog-page { --catalog-accent: #ff6a00; --catalog-dark: #111820; }
.catalog-page.theme-steel { --catalog-accent: #e85d04; --catalog-dark: #101820; }
.catalog-page.theme-teal { --catalog-accent: #087f8c; --catalog-dark: #10252a; }
.catalog-page.theme-green { --catalog-accent: #4f772d; --catalog-dark: #182417; }
.catalog-page.theme-red { --catalog-accent: #c44536; --catalog-dark: #271713; }
.catalog-page.theme-gold { --catalog-accent: #b7791f; --catalog-dark: #282014; }
.catalog-hero { position: relative; min-height: 520px; display: flex; align-items: flex-end; color: var(--white); background: var(--catalog-dark); overflow: hidden; }
.catalog-hero-media { position: absolute; inset: 0; }
.catalog-hero-media:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,8,12,.96) 0%, rgba(4,8,12,.78) 42%, rgba(4,8,12,.2) 76%, rgba(4,8,12,.5) 100%); }
.catalog-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.catalog-hero-inner { position: relative; z-index: 1; width: min(720px,100%); padding: 92px 0 70px; }
.catalog-kicker { color: var(--catalog-accent); font-size: 12px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; }
.catalog-hero h1 { font-size: clamp(40px,6vw,76px); line-height: .98; margin: 0 0 18px; max-width: 850px; }
.catalog-hero p { max-width: 650px; color: #d7dde5; font-size: 17px; margin-bottom: 24px; }
.catalog-nav { background: var(--catalog-dark); border-top: 1px solid rgba(255,255,255,.12); }
.catalog-nav-scroll { display: flex; overflow-x: auto; scrollbar-width: thin; }
.catalog-nav a { flex: 0 0 auto; padding: 15px 14px; color: #dce2e9; font-size: 11px; font-weight: 800; text-transform: uppercase; border-bottom: 3px solid transparent; }
.catalog-nav a:hover, .catalog-nav a.active { color: var(--white); border-color: var(--catalog-accent); }
.catalog-facts { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); background: var(--white); }
.catalog-fact { padding: 22px; border-right: 1px solid var(--line); }
.catalog-fact:last-child { border-right: 0; }
.catalog-fact strong { display: block; color: var(--catalog-accent); font-size: 22px; line-height: 1.1; margin-bottom: 7px; }
.catalog-fact span { color: var(--muted); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.catalog-split { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(320px,.95fr); gap: 56px; align-items: center; }
.catalog-page.variant-reverse .catalog-split .catalog-copy { order: 2; }
.catalog-page.variant-reverse .catalog-split .catalog-visual { order: 1; }
.catalog-visual { overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); background: #111; }
.catalog-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: .45s ease; }
.catalog-visual:hover img { transform: scale(1.035); }
.catalog-copy h2, .catalog-section-title h2 { font-size: clamp(28px,4vw,44px); line-height: 1.1; margin-bottom: 16px; }
.catalog-copy p, .catalog-section-title p { color: var(--muted); }
.catalog-section-title { max-width: 760px; margin-bottom: 30px; }
.catalog-section-title.center { margin-left: auto; margin-right: auto; text-align: center; }
.application-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.application-card { position: relative; min-height: 230px; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; color: var(--white); background-color: var(--catalog-dark); background-image: var(--application-image); background-repeat: no-repeat; background-size: cover; background-position: center; border-radius: 6px; isolation: isolate; }
.application-card:nth-child(1) { background-position: left center; }
.application-card:nth-child(2) { background-position: center; }
.application-card:nth-child(3) { background-position: right center; }
.application-card:before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,7,10,.94) 0%, rgba(4,7,10,.66) 44%, rgba(4,7,10,.18) 100%); }
.application-card:after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.08); border-radius: inherit; pointer-events: none; }
.application-card > * { position: relative; z-index: 1; }
.application-card .number { color: var(--catalog-accent); font-size: 12px; font-weight: 900; margin-bottom: auto; }
.application-card h3 { font-size: 20px; margin-bottom: 8px; }
.application-card p { color: #ccd3dc; font-size: 13px; margin: 0; }
.technical-band { background: var(--catalog-dark); color: var(--white); }
.technical-band .spec-table { color: var(--ink); }
.technical-band .catalog-section-title p { color: #b8c1cb; }
.benefit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.benefit-item { background: var(--white); padding: 26px; }
.benefit-item h3 { font-size: 18px; margin-bottom: 8px; }
.benefit-item p { color: var(--muted); margin: 0; font-size: 14px; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: catalog-step; }
.process-step { position: relative; padding: 24px 20px 22px; border-top: 3px solid var(--catalog-accent); background: var(--soft); }
.process-step:before { counter-increment: catalog-step; content: "0" counter(catalog-step); display: block; color: var(--catalog-accent); font-weight: 900; margin-bottom: 24px; }
.process-step h3 { font-size: 17px; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 13px; margin: 0; }
.catalog-cta { background: var(--catalog-dark); color: var(--white); padding: 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-left: 5px solid var(--catalog-accent); }
.catalog-cta h2 { font-size: clamp(25px,3vw,36px); margin-bottom: 6px; }
.catalog-cta p { color: #bdc6d0; margin: 0; }
.catalog-page .btn.catalog-button { background: var(--catalog-accent); flex: 0 0 auto; }
.service-card, .quality-card { padding: 30px; text-align: center; }
.service-card .icon, .quality-card .icon { margin-left: auto; margin-right: auto; }
.services-showcase { padding: 42px 0 72px; background: var(--white); }
.services-title { margin-bottom: 30px; }
.services-title h1 { color: #020408; font-size: clamp(42px,5vw,60px); line-height: 1; margin: 6px 0 14px; letter-spacing: 0; }
.services-title p { color: #5d6570; font-size: clamp(17px,2vw,21px); line-height: 1.45; }
.service-image-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-image-card { background: var(--white); border: 1px solid #dfe3e8; border-radius: 7px; overflow: hidden; text-align: center; transition: .25s ease; }
.service-image-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(5, 8, 12, 0.12); border-color: rgba(255,106,0,.32); }
.service-image-card img { width: 100%; height: 260px; object-fit: cover; }
.service-copy { min-height: 124px; padding: 18px 26px 22px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.service-copy h2 { color: #030508; font-size: 20px; line-height: 1.18; margin: 0 0 10px; text-transform: uppercase; font-weight: 900; }
.service-copy p { color: #242b35; font-size: 17px; line-height: 1.45; margin: 0; max-width: 350px; }
.machinery { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; padding: 0; margin: 0; list-style: none; }
.machinery li { background: var(--soft); padding: 14px 16px; border-left: 3px solid var(--orange); font-weight: 800; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 36px; }
.contact-panel, .contact-form, .map-placeholder { border: 1px solid var(--line); border-radius: 6px; background: var(--white); padding: 30px; }
.contact-item { display: flex; gap: 14px; margin: 18px 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 3px; padding: 14px 15px; font: inherit; outline: none; transition: .2s ease; }
textarea { min-height: 160px; resize: vertical; }
input:focus, textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,106,0,.12); }
.full { grid-column: 1/-1; }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { min-height: 24px; margin: 0; font-size: 14px; font-weight: 700; }
.form-status:empty { display: none; }
.form-status.is-loading { color: var(--muted); }
.form-status.is-success { color: #19733c; }
.form-status.is-error { color: #b42318; }
.contact-form button:disabled { cursor: wait; opacity: .65; transform: none; }
.map-placeholder { margin-top: 28px; min-height: 260px; display: grid; place-items: center; background: linear-gradient(45deg, rgba(255,255,255,.82), rgba(255,255,255,.82)), url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1400&q=80"); background-size: cover; background-position: center; color: var(--ink); font-weight: 900; }
.site-footer { background: #05080c; color: #c5ccd5; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; padding: 62px 0; }
.footer-grid h3 { color: var(--white); text-transform: uppercase; font-size: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--orange); }
.copyright { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #87909d; }
.reveal { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .topbar { display: none; }
  .home-page .site-header { top: 0; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-menu { position: fixed; top: 78px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #05080c; padding: 10px 20px 22px; max-height: calc(100vh - 78px); overflow: auto; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 14px 0; }
  .dropdown { position: static; width: 100%; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; background: rgba(255,255,255,.06); }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { color: var(--white); padding-left: 14px; }
  .dropdown span { color: var(--white); padding: 10px 14px; }
  .industries-dropdown .dropdown { width: 100%; }
  .nav-cta { display: none; }
  .feature-grid, .stats, .footer-grid { grid-template-columns: repeat(2,1fr); }
  .home-hero { min-height: 720px; background-position: center; }
  .home-hero .hero-content { padding: 165px 0 230px; }
  .home-feature-strip { margin-top: -185px; }
  .home-feature-grid .feature-box { min-height: 190px; }
  .service-image-grid { grid-template-columns: repeat(2,1fr); }
  .split, .detail-layout, .contact-layout { grid-template-columns: 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
  .industry-list { grid-template-columns: repeat(2,1fr); }
  .catalog-split { grid-template-columns: 1fr; }
  .catalog-page.variant-reverse .catalog-split .catalog-copy,
  .catalog-page.variant-reverse .catalog-split .catalog-visual { order: initial; }
  .catalog-facts, .process-line { grid-template-columns: repeat(2,1fr); }
  .application-grid { grid-template-columns: repeat(2,1fr); }
  .sidebar { position: static; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 26px,1180px); }
  .brand { min-width: 0; }
  .brand-logo { width: 172px; height: 54px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 8px; }
  .hero { min-height: 600px; }
  .hero-content { padding-top: 50px; }
  .home-hero { min-height: 670px; }
  .home-hero .hero-content { padding: 125px 0 120px; }
  .home-hero h1 { font-size: clamp(44px,14vw,58px); }
  .home-hero p { font-size: 14px; line-height: 1.65; }
  .home-hero .hero-actions { align-items: stretch; }
  .home-hero .hero-actions .btn { width: 100%; }
  .section { padding: 58px 0; }
  .feature-strip, .home-feature-strip { margin-top: 0; }
  .home-feature-strip { background: #05080c; padding: 13px 0 0; }
  .home-feature-grid { gap: 13px; }
  .home-feature-grid .feature-box { min-height: 190px; }
  .services-showcase { padding: 34px 0 52px; }
  .service-image-card img { height: 220px; }
  .service-copy { min-height: 0; padding: 18px 18px 22px; }
  .service-copy h2 { font-size: 18px; }
  .service-copy p { font-size: 16px; }
  .feature-grid, .stats, .product-grid, .service-grid, .service-image-grid, .gallery-grid, .quality-grid, .footer-grid, .machinery, .form-grid, .info-grid, .industry-list { grid-template-columns: 1fr; }
  .catalog-hero { min-height: 470px; }
  .catalog-hero-inner { padding: 76px 0 52px; }
  .catalog-facts, .application-grid, .benefit-grid, .process-line { grid-template-columns: 1fr; }
  .catalog-fact { border-right: 0; border-bottom: 1px solid var(--line); }
  .catalog-fact:last-child { border-bottom: 0; }
  .catalog-cta { align-items: flex-start; flex-direction: column; padding: 28px 22px; }
  .feature-box, .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .detail-image img { height: 360px; }
  .thumb-grid { grid-template-columns: repeat(2,1fr); }
}


/* Footer map added by AksharArt CMS */
.footer-map{padding:0 0 34px}.footer-map-inner{border-top:1px solid rgba(255,255,255,.14);padding-top:28px}.footer-map-head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;margin-bottom:14px}.footer-map-head h3{margin:0;color:var(--white);text-transform:uppercase;font-size:14px;letter-spacing:.4px}.footer-map-head p{margin:5px 0 0;color:#aab4c2;font-size:13px}.footer-map-open{display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.25);border-radius:4px;padding:10px 13px;color:#fff;text-decoration:none;font-size:12px;font-weight:800;transition:.2s}.footer-map-open:hover{border-color:var(--orange);color:var(--orange)}.footer-map-frame{overflow:hidden;border:1px solid rgba(255,255,255,.15);border-radius:6px;background:#0b1119;box-shadow:0 12px 28px rgba(0,0,0,.18)}.footer-map-embed{display:block;width:100%;height:270px;border:0;filter:grayscale(.15) contrast(1.03)}
@media(max-width:620px){.footer-map-head{align-items:flex-start;flex-direction:column}.footer-map-open{width:100%}.footer-map-embed{height:235px}}
