*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --navy: #2d3538;
  --navy-mid: #98754e;
  --navy-light: #2a4a6b;
  --red: #2d3538;
  --red-hover: #98754e;
  --silver: #78909c;
  --light-grey: #f4f6f8;
  --mid-grey: #e8ecf0;
  --border: #dde3e8;
  --text: #2c3e50;
  --text-mid: #4a5568;
  --text-light: #718096;
  --white: #ffffff;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a {
  text-decoration: none;
}

/* ── UTIL ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-pad {
  padding: 80px 0;
}
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}
.lead {
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.85;
}
.divider {
  width: 44px;
  height: 3px;
  background: var(--red);
  margin: 16px 0 22px;
}
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  line-height: 1;
}
.btn-red {
  background: var(--red);
  color: #fff;
}
.btn-red:hover {
  background: var(--red-hover);
}
.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-w:hover {
  background: #fff;
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--navy-mid);
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
}
.tb-items {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.tb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}
.tb-item:hover {
  color: #fff;
}
.tb-item svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
  flex-shrink: 0;
}

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-box {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-box::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 44px;
  height: 44px;
  background: var(--red);
  z-index: -1;
}
.logo-box svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.logo-text span {
  font-family: var(--font-head);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
}
.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 4px;
}
.nav-list a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  padding: 8px 13px;
  display: block;
  position: relative;
  transition: color 0.2s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-list a:hover {
  color: var(--red);
}
.nav-list a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  margin-left: 8px;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--red-hover) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 500px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 50px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 50px
    );
}
.hero-diagonal {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: var(--navy-mid);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 500px;
  width: 100%;
}
.hero-left {
  padding: 70px 50px 70px 0;
}
.eyebrow {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 32px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-right {
  position: relative;
  z-index: 2;
  padding: 60px 0 60px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.h-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background 0.2s;
}
.h-card:hover {
  background: rgba(255, 255, 255, 0.09);
}
.h-card-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-card-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.h-card-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
  letter-spacing: 0.03em;
}
.h-card-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

/* ── STATS ── */
.stats-bar {
  background: var(--red);
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.s-box {
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.s-box:last-child {
  border-right: none;
}
.s-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  display: block;
}
.s-lbl {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5px;
  display: block;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .lead {
  margin-bottom: 14px;
}
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 22px;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}
.about-visual {
  position: relative;
}
.about-img-box {
  background: var(--navy);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 48px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 48px
    );
}
.about-icon-wrap {
  position: relative;
  z-index: 1;
}
.about-ribbon {
  background: var(--red);
  padding: 15px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-ribbon p {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.about-ribbon strong {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}
.iso-floater {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 84px;
  height: 84px;
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.iso-floater span {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  line-height: 1.2;
  text-align: center;
}
.iso-floater small {
  font-family: var(--font-head);
  font-size: 8px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── SERVICES ── */
.services-section {
  background: var(--light-grey);
}
.svc-header {
  text-align: center;
  margin-bottom: 48px;
}
.svc-header .divider {
  margin: 16px auto;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.svc-card {
  background: #fff;
  padding: 34px 28px 28px;
  border-bottom: 3px solid transparent;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  border-bottom-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}
.svc-n {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 800;
  color: var(--light-grey);
  line-height: 1;
  pointer-events: none;
  transition: color 0.25s;
}
.svc-card:hover .svc-n {
  color: var(--mid-grey);
}
.svc-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.25s;
}
.svc-card:hover .svc-icon {
  background: var(--red);
}
.svc-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.svc-card p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.78;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 16px;
  transition: gap 0.2s;
}
.svc-more:hover {
  gap: 9px;
}
.svc-more svg {
  width: 13px;
  height: 13px;
  fill: var(--red);
}

/* ── MATERIALS ── */
.materials-section {
  background: var(--navy);
  padding: 64px 0;
}
.mat-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.mat-intro .h2 {
  color: #fff;
  margin-bottom: 0;
}
.mat-intro .divider {
  background: var(--red);
}
.mat-intro p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.8;
  max-width: 320px;
  margin-top: 4px;
}
.mat-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mat-col h4 {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 13px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.mat-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  transition: all 0.2s;
  cursor: default;
}
.mat-tag:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── QUALITY ── */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.quality-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.qf {
  padding: 22px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qf:hover {
  border-color: var(--red);
  box-shadow: 0 4px 18px rgba(192, 57, 43, 0.08);
}
.qf svg {
  width: 28px;
  height: 28px;
  fill: var(--red);
  margin-bottom: 11px;
}
.qf h4 {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 7px;
}
.qf p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.65;
}
.iso-panel {
  background: var(--light-grey);
  padding: 36px;
  text-align: center;
  border-top: 4px solid var(--red);
  margin-top: 28px;
}
.iso-circle {
  width: 110px;
  height: 110px;
  background: var(--navy);
  border-radius: 50%;
  border: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.iso-circle span {
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
.iso-big {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
}
.iso-panel > p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-top: 8px;
  line-height: 1.7;
}

/* ── PROCESS ── */
.process-section {
  background: var(--light-grey);
}
.process-header {
  text-align: center;
  margin-bottom: 48px;
}
.process-header .divider {
  margin: 16px auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.p-step {
  text-align: center;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.p-circle {
  width: 74px;
  height: 74px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  transition: all 0.25s;
}
.p-step:hover .p-circle {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.p-step h4 {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 7px;
}
.p-step p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── INDUSTRIES ── */
.ind-header {
  text-align: center;
  margin-bottom: 44px;
}
.ind-header .divider {
  margin: 16px auto;
}
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}
.ind-cell {
  background: #fff;
  padding: 30px 14px;
  text-align: center;
  transition: background 0.2s;
  cursor: default;
}
.ind-cell:hover {
  background: var(--navy);
}
.ind-cell svg {
  width: 34px;
  height: 34px;
  fill: var(--navy);
  margin: 0 auto 11px;
  transition: fill 0.2s;
}
.ind-cell p {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.4;
  transition: color 0.2s;
}
.ind-cell:hover svg {
  fill: #fff;
}
.ind-cell:hover p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--light-grey);
}
.testi-header {
  text-align: center;
  margin-bottom: 44px;
}
.testi-header .divider {
  margin: 16px auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: #fff;
  padding: 28px;
  border-top: 3px solid var(--red);
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.t-stars svg {
  width: 15px;
  height: 15px;
  fill: #e67e22;
}
.t-card blockquote {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 16px;
}
.t-card blockquote::before {
  content: "\201C";
  font-size: 32px;
  color: var(--red);
  line-height: 0;
  vertical-align: -12px;
  margin-right: 3px;
}
.t-author strong {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  letter-spacing: 0.03em;
}
.t-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--red);
  padding: 54px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 5px;
  font-size: 14.5px;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.c-info-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.ci-body strong {
  display: block;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 3px;
}
.ci-body span {
  font-size: 14px;
  color: var(--text-mid);
}
.c-note {
  background: var(--light-grey);
  border-left: 3px solid var(--red);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 24px;
}
/* form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fg label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.fg input,
.fg select,
.fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  background: #fff;
  -webkit-appearance: none;
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--navy);
}
.fg textarea {
  resize: vertical;
  min-height: 118px;
}
#fsuccess {
  display: none;
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
  padding: 12px 16px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  color: #1b5e20;
  letter-spacing: 0.04em;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
}
.footer-top {
  padding: 56px 0 36px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 40px;
}
.f-brand p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin: 14px 0 18px;
}
.f-brand .f-cert {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.f-col h4 {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.f-col ul a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.f-col ul a:hover {
  color: #fff;
}
.f-col ul a svg {
  width: 11px;
  height: 11px;
  fill: var(--navy-mid);
  flex-shrink: 0;
}
.f-addr {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.75;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 64px 0;
  }
  .about-grid,
  .quality-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mat-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    flex-direction: column;
    padding: 14px 24px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .nav-list.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
  }
  .s-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .quality-features {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .process-steps::before {
    display: none;
  }
  .ind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .frow {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .check-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
  }
}
.logo img {
  width: 241px;
}
.industrial-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2;
}

.content h4 {
  font-size: 22px;
  color: #f9b233;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.content h1 {
  font-size: 58px;
  margin: 0 0 20px;
  font-weight: 700;
}

.content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.btn-main {
  display: inline-block;
  padding: 14px 35px;
  background: #98754e;
  color: #111;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
  background: var(--red) !important;
  color: #fff !important;
}

.btn-main:hover {
  background: var(--red-hover) !important;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 3;
  transition: 0.3s;
}

.nav:hover {
  background: var(--red-hover) !important;
  color: #111;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

@media (max-width: 768px) {
  .content h1 {
    font-size: 38px;
  }
  .content p {
    font-size: 16px;
  }
}

.product-area {
  padding: 70px 40px;
}

.main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #1a120d;
  margin-bottom: 15px;
}

.title-line {
  width: 180px;
  height: 3px;
  background: #d7a64a;
  margin: 0 auto 45px;
}

.swiper {
  padding-bottom: 60px;
}

.product-slide {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.top-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.top-images img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border: 1px solid #eee;
  padding: 10px;
  background: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-box {
  border: 1px solid #eee;
  padding: 20px;
  background: #fafafa;
}

.info-box h4 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #222;
}

.info-box p {
  margin: 0;
  line-height: 28px;
  font-size: 15px;
  color: #666;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.swiper-pagination-bullet-active {
  background: #d7a64a;
}

@media (max-width: 991px) {
  .top-images {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .main-title {
    font-size: 30px;
  }
}
.services-slider {
  width: 100%;
  padding: 20px 0 60px;
  overflow: hidden;
}

.svc-card {
  position: relative;
  background: #fff;
  padding: 30px 25px;
  border: 1px solid #e5e5e5;
  transition: all 0.35s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.svc-n {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 42px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
}

.svc-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: var(--navy);
}

.svc-icon svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.svc-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #111;
  height: 60px;
}

.svc-card div.pargraph {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 22px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 100px;
}
.pargraph ul {
  list-style: disc !important;
  padding-left: 20px;
  margin-left: 0;
}

.pargraph li {
  display: list-item;
}
.svc-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.svc-more svg {
  width: 18px;
  height: 18px;
  color: var(--navy);
}

.swiper-pagination-bullet-active {
  background: #000 !important;
}

/* Responsive */
@media (max-width:991px) {
  .svc-card {
    padding: 25px 20px;
  }
}

@media (max-width:767px) {
  .svc-card h3 {
    font-size: 20px;
  }
}
/* BUTTON AREA */
.svc-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 25px;
}

.svc-know {
  border: none;
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.svc-know:hover {
  background: var(--red-hover);
}

/* POPUP */
.svc-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  padding: 20px;
}

.svc-popup.active {
  opacity: 1;
  visibility: visible;
}

.svc-popup-box {
  width: 100%;
  max-width: 80%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  animation: popupShow 0.4s ease;
}

@keyframes popupShow {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.svc-popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.svc-popup-img img {
  width: 40%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.svc-popup-img {
  display: flex;
  justify-content: center;
}
.svc-popup-content {
  padding: 40px;
}

.svc-popup-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.svc-popup-content p {
  color: #666;
  line-height: 1.8;
  font-size: 16px;
}

.svc-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width:768px) {
  .svc-popup-grid {
    grid-template-columns: 1fr;
  }

  .svc-popup-img {
    height: 250px;
  }

  .svc-popup-content {
    padding: 25px;
  }

  .svc-popup-content h2 {
    font-size: 24px;
  }

  .svc-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}
.img-gif {
  width: 300px;
  height: 250px;
  object-fit: contain;
}
