/* ==========================================================
   Metal Square UAE — Static Site Styles
   Logo palette: Navy #2C4A6B, Tan #C99E5C, Brick #B25A5C
   ========================================================== */

:root {
  --navy: #2c4a6b;
  --navy-dark: #1f3550;
  --navy-deep: #14253a;
  --tan: #c99e5c;
  --tan-light: #e0bf86;
  --brick: #b25a5c;
  --ink: #14253a;
  --slate: #4a5a6e;
  --muted: #7b8694;
  --line: #e6e9ee;
  --bg: #f6f7f9;
  --card: #ffffff;
  --shadow-sm: 0 2px 8px rgba(20, 37, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(20, 37, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(20, 37, 58, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --header-h: 84px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Bricolage Grotesque', 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--navy-deep);
  color: #d6dde6;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #d6dde6; }
.topbar a:hover { color: var(--tan-light); }
.topbar .tb-left, .topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar i { color: var(--tan); margin-right: 6px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 60px;
  width: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-text .b-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 20px;
  letter-spacing: 0.02em;
}
.brand-text .b-tag {
  font-size: 10px;
  color: var(--tan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav a.active {
  color: var(--navy);
}
.nav a.active::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--tan);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--tan);
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--tan);
  transition: all .25s ease;
  letter-spacing: 0.01em;
}
.btn:hover {
  background: transparent;
  color: var(--tan);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}
.btn-primary {
  background: var(--navy);
  border-color: var(--navy);
}
.btn-primary:hover { color: var(--navy); border-color: var(--navy); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 20px;
  align-items: center;
  justify-content: center;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.45) saturate(0.85);
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(20,37,58,.92) 0%, rgba(20,37,58,.55) 55%, rgba(20,37,58,.25) 100%);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--tan);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.6vw, 4.5rem);
  color: #fff;
  font-weight: 800;
  max-width: 900px;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--tan); }
.hero p.lead {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 720px;
}
.hero-stat {
  border-left: 2px solid var(--tan);
  padding-left: 14px;
}
.hero-stat .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}
.hero-stat .lbl {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===== Section base ===== */
section { padding: 96px 0; }
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.04rem;
}
.section-head.left { text-align: left; margin: 0 0 48px; }

/* ===== About snapshot ===== */
.about-snap {
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-img-wrap .badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--tan);
  color: #fff;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.about-img-wrap .badge .n {
  font-size: 38px;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-img-wrap .badge .t {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: .9;
}
.about-text .eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}
.about-text p {
  color: var(--slate);
  margin-bottom: 16px;
}
.about-bullets {
  list-style: none;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.about-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}
.about-bullets i {
  color: var(--tan);
  margin-top: 4px;
}

/* ===== Categories ===== */
.cats { background: var(--bg); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--tan);
}
.cat-card .img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.cat-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.cat-card:hover .img img { transform: scale(1.06); }
.cat-card .img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20,37,58,.5));
}
.cat-card .body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-card h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.cat-card p {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
}
.cat-card .arrow {
  margin-top: 14px;
  color: var(--tan);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== Why Choose Us ===== */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, #f3f5f8 100%);
  border: 1px solid var(--line);
  transition: all .3s ease;
}
.why-card:hover {
  border-color: var(--tan);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--tan);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.why-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===== Industries ===== */
.industries { background: var(--bg); }
.ind-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.ind-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.ind-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.ind-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,37,58,.92));
}
.ind-card:hover img { transform: scale(1.08); }
.ind-card .label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* ===== Capabilities ===== */
.capabilities {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.capabilities::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/machinery.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.capabilities .container { position: relative; z-index: 1; }
.capabilities h2, .capabilities .section-head h2 { color: #fff; }
.capabilities .section-head p { color: rgba(255,255,255,0.75); }
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.cap-item {
  border-top: 2px solid var(--tan);
  padding-top: 22px;
}
.cap-item .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  color: var(--tan);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 10px;
}
.cap-item h3 {
  color: #fff;
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.cap-item p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ===== Quick Contact ===== */
.qc { background: #fff; }
.qc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: stretch;
}
.qc-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 100%;
}
.qc-img img { width: 100%; height: 100%; object-fit: cover; }
.qc-form {
  background: var(--bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.qc-form h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.qc-form p.muted {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 14px;
}
.field {
  margin-bottom: 16px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--tan);
  box-shadow: 0 0 0 3px rgba(201,158,92,0.18);
}
.field textarea { min-height: 120px; resize: vertical; }
.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 18px;
}
.consent input { margin-top: 4px; }
.form-msg {
  margin-top: 12px;
  font-size: 14px;
  color: #2e7d32;
  display: none;
}
.form-msg.show { display: block; }

/* ===== CTA Strip ===== */
.cta-strip {
  background: var(--tan);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 12px;
}
.cta-strip p {
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn {
  background: var(--navy);
  border-color: var(--navy);
}
.cta-strip .btn:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.78);
  padding: 72px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-brand img {
  height: 76px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 14px;
  line-height: 1.7;
}
.foot h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.foot ul { list-style: none; }
.foot ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.foot ul li a:hover { color: var(--tan); }
.foot-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.foot-contact i {
  color: var(--tan);
  margin-top: 4px;
}
.foot-bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ===== Inner page hero ===== */
.page-hero {
  position: relative;
  padding: 140px 0 90px;
  color: #fff;
  background: var(--navy-deep);
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--bg-image, url('images/workshop.jpg'));
  background-size: cover;
  background-position: center;
  opacity: 0.28;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,37,58,.7), rgba(20,37,58,.95));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  margin: 0 auto;
}
.crumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 18px;
}
.crumbs a { color: var(--tan-light); }
.crumbs a:hover { color: #fff; }

/* ===== Generic content blocks ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 5/4;
  object-fit: cover;
}
.split h3 {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--navy);
}
.split p { color: var(--slate); margin-bottom: 14px; }

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 22px;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.tl-item { position: relative; z-index: 1; }
.tl-item .dot {
  width: 22px; height: 22px;
  background: var(--tan);
  border-radius: 50%;
  margin-bottom: 18px;
  border: 6px solid var(--bg);
}
.tl-item h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.tl-item p { color: var(--muted); font-size: 14px; }

/* MVV cards */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  border-top: 4px solid var(--tan);
}
.mvv-card .ic {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--tan);
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.mvv-card h3 { color: var(--navy); margin-bottom: 10px; }
.mvv-card p { color: var(--slate); font-size: 15px; }

/* Strengths */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.strength {
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  color: var(--navy);
  transition: all .25s ease;
}
.strength i { color: var(--tan); font-size: 18px; }
.strength:hover {
  border-color: var(--tan);
  transform: translateX(4px);
}

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--tan);
  box-shadow: var(--shadow-md);
}
.product-card .img {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.product-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.product-card:hover .img img { transform: scale(1.06); }
.product-card .body { padding: 24px; }
.product-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.product-card p {
  color: var(--muted);
  font-size: 14px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px 18px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.process-step .n {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--tan);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-family: 'Bricolage Grotesque', sans-serif;
  margin: 0 auto 14px;
  font-size: 18px;
}
.process-step h4 {
  font-size: 14px;
  color: var(--navy);
}

/* FAQs */
.faqs-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.faq.open { border-color: var(--tan); box-shadow: var(--shadow-sm); }
.faq button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--navy);
  font-size: 15px;
  gap: 14px;
}
.faq button .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--navy);
  display: grid; place-items: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq.open button .ic {
  transform: rotate(45deg);
  background: var(--tan);
  color: #fff;
}
.faq .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq .panel-inner {
  padding: 0 24px 22px;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  background: var(--navy);
  color: #fff;
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-info h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-info p.intro {
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  font-size: 14px;
}
.ci-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.ci-item .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  color: var(--tan);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ci-item h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.ci-item p, .ci-item a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  word-break: break-word;
}
.ci-item a:hover { color: var(--tan); }
.map-wrap {
  margin-top: 32px;
  border-radius: 14px;
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--line);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .cat-grid, .why-grid, .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .timeline::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 820px) {
  :root { --header-h: 72px; }
  section { padding: 64px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav.open a { padding: 14px 16px; border-radius: 8px; }
  .nav.open a.active::after { display: none; }
  .nav.open a.active { background: var(--bg); }
  .menu-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .about-grid, .qc-grid, .contact-grid, .split { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap .badge { right: 16px; bottom: -20px; }
  .about-bullets { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .mvv-grid, .strengths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cat-grid, .why-grid, .cap-grid, .products-grid, .ind-grid, .process-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .fields-row { grid-template-columns: 1fr; }
  .qc-form, .contact-info { padding: 28px 22px; }
  .brand-text .b-name { font-size: 16px; }
  .brand img { height: 48px; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: none; }
