:root {
  --navy: #071a57;
  --navy-900: #04103a;
  --navy-700: #0d2a7a;
  --orange: #f58220;
  --orange-600: #dd6c0c;
  --teal: #0a7399;
  --cyan: #1fd1d9;
  --ink: #18223a;
  --muted: #5a6479;
  --line: #e2e7f0;
  --soft: #f3f6fb;
  --white: #ffffff;
  --green: #25d366;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(7, 26, 87, .06);
  --shadow: 0 10px 30px rgba(7, 26, 87, .10);
  --shadow-lg: 0 20px 50px rgba(7, 26, 87, .18);
  --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-head: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open, body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: .2px; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section { padding: 88px 0; }
.section--soft { background: var(--soft); }
.section--navy { background: var(--navy); color: #d6ddf2; }
.section--navy h2, .section--navy h3 { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* Section headings */
.section-head { text-align: center; max-width: 760px; margin: 0 auto 52px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--navy .section-head p { color: #b9c3e3; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.eyebrow::before, .eyebrow::after { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head--left .eyebrow::after { display: none; }
.title-accent { color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 6px; border: 2px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 1px; text-transform: uppercase; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(245, 130, 32, .35); }
.btn-primary:hover { background: var(--orange-600); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); }
.btn-whatsapp { background: var(--green); color: var(--white); box-shadow: 0 8px 20px rgba(37, 211, 102, .3); }
.btn-whatsapp:hover { background: #1eb457; color: var(--white); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }
.btn-block { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--orange); }
.link-arrow i { transition: transform .2s; }
a:hover .link-arrow i, .link-arrow:hover i { transform: translateX(4px); }

/* Top bar */
.topbar { background: var(--navy-900); color: #c7d0ec; font-size: .92rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; }
.topbar a { color: #e3e8f7; }
.topbar a:hover { color: var(--orange); }
.topbar__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar__contact i { color: var(--orange); margin-right: 6px; }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__msme { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--cyan); }
.social { display: flex; gap: 8px; }
.social a {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); color: var(--white); font-size: .85rem;
}
.social a:hover { background: var(--orange); color: var(--white); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--white);
  border-bottom: 1px solid var(--line); transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }
.brand img { height: 56px; width: auto; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; display: flex; align-items: center; }
.main-nav > ul > li > a {
  display: flex; align-items: center; gap: 6px; padding: 10px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--navy); position: relative; height: var(--header-h);
}
.main-nav > ul > li > a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 22px; height: 3px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.main-nav > ul > li > a:hover::after, .main-nav > ul > li > a.active::after { transform: scaleX(1); }
.main-nav > ul > li > a.active, .main-nav > ul > li > a:hover { color: var(--orange); }
.main-nav .caret { font-size: .7rem; transition: transform .2s; }
.submenu-toggle { display: none; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.header-call { display: flex; align-items: center; gap: 10px; color: var(--navy); line-height: 1.2; }
.header-call i {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(245,130,32,.12); color: var(--orange);
}
.header-call small { display: block; color: var(--muted); font-size: .8rem; }
.header-call strong { font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .5px; }
.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 8px; border: 1px solid var(--line);
  background: var(--white); color: var(--navy); font-size: 1.3rem; cursor: pointer;
}

/* Mega menu */
.site-header .container { position: relative; }
.main-nav > ul > li.has-mega { position: static; }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 12px);
  width: min(960px, 100%); height: 470px;
  background: var(--white); border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--orange); box-shadow: var(--shadow-lg);
  display: block; padding: 0;
  opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.has-mega:hover .caret { transform: rotate(180deg); }
.mega ul { list-style: none; }
.mega h4 {
  font-size: .95rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange);
  border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 8px;
}
.mega-l1-wrap {
  width: 300px; height: 100%; display: flex; flex-direction: column; padding: 14px 0 10px;
  background: var(--soft); border-right: 1px solid var(--line); border-radius: 0 0 0 var(--radius);
}
.mega-row { display: flex; align-items: stretch; }
.mega-row > a { flex: 1; display: flex; align-items: center; gap: 12px; line-height: 1.3; }
.mega-row .chev { margin-left: auto; font-size: .65rem; color: var(--muted); }
.mega-row .count + .chev { margin-left: 10px; }
.mega-toggle { display: none; }
.mega-l1 > li > .mega-row > a {
  padding: 13px 20px 13px 19px; border-left: 3px solid transparent; color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; letter-spacing: .5px; text-transform: uppercase;
}
.mega-ico { flex: none; width: 36px; height: 36px; border-radius: 8px; display: grid; place-items: center; background: var(--white); color: var(--orange); font-size: .95rem; box-shadow: var(--shadow-sm); }
.mega-l1 > li.is-open > .mega-row > a { background: var(--white); border-left-color: var(--orange); color: var(--orange); }
.mega-l1 > li.is-open > .mega-row .chev { color: var(--orange); }
.mega-l2 { position: absolute; top: 0; left: 300px; width: 310px; height: 100%; padding: 22px 16px 22px 24px; display: none; }
.mega-l2--wide { width: 660px; padding-right: 28px; }
.mega-l2--wide ul { columns: 2; column-gap: 32px; }
.mega-l1 > li.is-open > .mega-l2 { display: block; }
.mega-link { display: flex; align-items: flex-start; gap: 8px; padding: 7px 0; color: var(--ink); font-weight: 500; font-size: .96rem; line-height: 1.35; break-inside: avoid; transition: color .15s, transform .15s; }
.mega-link i { font-size: .6rem; color: var(--teal); margin-top: 6px; }
.mega-link:hover { color: var(--orange); transform: translateX(3px); }
.mega-sub > li > .mega-row > a { padding: 9px 12px; border-radius: 8px; color: var(--navy); font-weight: 600; font-size: .98rem; }
.mega-sub .count { margin-left: auto; font-size: .75rem; font-weight: 700; color: var(--muted); background: var(--soft); border-radius: 20px; padding: 1px 8px; }
.mega-sub > li.is-open > .mega-row > a { background: rgba(245,130,32,.1); color: var(--orange); }
.mega-sub > li.is-open .count { background: var(--orange); color: var(--white); }
.mega-l3 { position: absolute; top: 0; left: 100%; width: 350px; height: 100%; padding: 22px 26px; border-left: 1px solid var(--line); display: none; }
.mega-sub > li.is-open > .mega-l3 { display: block; }
.mega__help { margin-top: auto; padding: 14px 22px 4px; border-top: 1px solid var(--line); }

/* Hero */
.hero {
  position: relative; min-height: min(86vh, 760px); display: grid; place-items: center; text-align: center;
  color: var(--white); padding: 120px 0 140px; overflow: hidden;
  background: var(--navy-900) url('../assets/img/rackimage1.jpg') center 40% / cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,16,58,.78) 0%, rgba(4,16,58,.62) 50%, rgba(4,16,58,.9) 100%);
}
.hero .container { position: relative; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: 40px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(4px);
  font-weight: 600; font-size: .95rem; margin-bottom: 22px;
}
.hero__badge i { color: var(--orange); }
.hero h1 { color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.hero h1 span { display: block; color: var(--orange); }
.hero__sub { font-size: clamp(1.1rem, 2vw, 1.4rem); color: #dfe5f7; margin-bottom: 34px; font-weight: 500; }
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__stats {
  position: absolute; left: 0; right: 0; bottom: 0; background: rgba(4,16,58,.72); backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero__stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__stat { padding: 18px 10px; border-right: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; gap: 12px; }
.hero__stat:last-child { border-right: 0; }
.hero__stat i { color: var(--orange); font-size: 1.5rem; }
.hero__stat strong { display: block; font-family: var(--font-head); font-size: 1.5rem; line-height: 1; }
.hero__stat span { font-size: .88rem; color: #c3cbe6; text-align: left; }

/* Solutions */
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.solution-card {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 34px 28px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); overflow: hidden;
  transition: transform .3s, box-shadow .3s; color: var(--ink);
}
.solution-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--orange)); }
.solution-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--ink); }
.solution-card__icon {
  width: 64px; height: 64px; border-radius: 14px; display: grid; place-items: center; font-size: 1.7rem;
  background: rgba(245,130,32,.12); color: var(--orange); margin-bottom: 20px; transition: background .3s, color .3s;
}
.solution-card:hover .solution-card__icon { background: var(--orange); color: var(--white); }
.solution-card h3 { font-size: 1.7rem; }
.solution-card p { color: var(--muted); font-size: .98rem; }

/* Trust strip */
.trust-strip { background: var(--navy); color: var(--white); padding: 30px 0; }
.trust-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip__title { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: 1px; }
.trust-strip__title span { color: var(--orange); }
.trust-items { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 10px; padding: 10px 18px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); font-weight: 600; font-size: .95rem;
}
.trust-item i { color: var(--cyan); font-size: 1.15rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 14px; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 5.2; object-fit: cover; width: 100%; }
.about-media__badge {
  position: absolute; right: -24px; bottom: 36px; background: var(--orange); color: var(--white);
  padding: 22px 26px; border-radius: 12px; box-shadow: var(--shadow-lg); text-align: center;
}
.about-media__badge strong { display: block; font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.about-media__badge span { font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-media__year {
  position: absolute; left: -18px; top: 30px; background: var(--navy); color: var(--white);
  padding: 12px 20px; border-radius: 10px; font-family: var(--font-head); font-size: 1.2rem; letter-spacing: 1px;
  box-shadow: var(--shadow);
}
.about-media__year span { color: var(--orange); }
.about-copy p { color: var(--muted); }
.about-copy .lead { font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0 32px; }
.stat {
  background: var(--soft); border-radius: var(--radius); padding: 20px 22px; border-left: 4px solid var(--orange);
}
.stat strong { font-family: var(--font-head); font-size: 2.6rem; color: var(--navy); line-height: 1; display: block; }
.stat span { color: var(--muted); font-weight: 600; font-size: .95rem; }
.check-list { list-style: none; display: grid; gap: 10px; margin-bottom: 1.2em; }
.check-list li { position: relative; padding-left: 32px; }
.check-list li::before {
  content: "\f00c"; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 3px;
  width: 22px; height: 22px; border-radius: 50%; background: rgba(10,115,153,.12); color: var(--teal);
  display: grid; place-items: center; font-size: .7rem;
}
.check-list--2 { grid-template-columns: repeat(2, 1fr); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; color: var(--ink); transition: transform .3s, box-shadow .3s, border-color .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; color: var(--ink); }
.product-card__img { aspect-ratio: 4 / 3; background: var(--white); overflow: hidden; border-bottom: 1px solid var(--line); }
.product-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .5s; }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: .78rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.product-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.product-card p { color: var(--muted); font-size: .95rem; flex: 1; }
.img-placeholder {
  width: 100%; height: 100%; min-height: 200px; display: grid; place-items: center; align-content: center; gap: 10px;
  background: repeating-linear-gradient(135deg, #eef2f9 0 14px, #e6ebf5 14px 28px); color: var(--navy);
  font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 1px; text-transform: uppercase; text-align: center;
}
.img-placeholder i { font-size: 2.6rem; color: var(--orange); }
.center-cta { text-align: center; margin-top: 44px; }

/* Product catalog */
.jump-links { background: var(--white); border-bottom: 1px solid var(--line); padding: 18px 0; position: sticky; top: var(--header-h); z-index: 50; }
.jump-links .container { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: thin; }
.jump-links a {
  flex: none; padding: 8px 16px; border-radius: 40px; border: 1px solid var(--line); background: var(--soft);
  font-weight: 600; font-size: .92rem; color: var(--navy); white-space: nowrap;
}
.jump-links a span { color: var(--orange); margin-left: 4px; }
.jump-links a:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.catalog-group + .catalog-group { margin-top: 56px; }
.catalog-group { scroll-margin-top: calc(var(--header-h) + 90px); }
.catalog-group__title {
  font-size: 1.7rem; display: flex; align-items: baseline; gap: 12px; padding-bottom: 12px; margin-bottom: 24px;
  border-bottom: 2px solid var(--line); position: relative;
}
.catalog-group__title::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 70px; height: 2px; background: var(--orange); }
.catalog-group__title span { font-family: var(--font-body); font-size: .9rem; font-weight: 600; color: var(--muted); }
section[id] { scroll-margin-top: calc(var(--header-h) + 70px); }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--white); border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--line);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card__icon {
  width: 56px; height: 56px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem;
  background: var(--navy); color: var(--white); margin-bottom: 18px;
}
.feature-card:nth-child(even) .feature-card__icon { background: var(--orange); }
.feature-card h3 { font-size: 1.35rem; }
.feature-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.section--navy .feature-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--navy .feature-card p { color: #b9c3e3; }
.section--navy .feature-card:hover { background: rgba(255,255,255,.08); }

/* Why choose */
.why-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: stretch; }
.why-highlight {
  border-radius: 14px; padding: 40px 34px; color: var(--white); position: relative; overflow: hidden;
  background: linear-gradient(160deg, rgba(7,26,87,.92), rgba(4,16,58,.97)), url('../assets/img/rackimage3.jpg') center / cover;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.why-highlight strong { font-family: var(--font-head); font-size: 6rem; line-height: .9; color: var(--orange); }
.why-highlight span { font-family: var(--font-head); font-size: 1.5rem; text-transform: uppercase; letter-spacing: 1.5px; line-height: 1.2; }
.why-highlight p { color: #c3cbe6; margin: 18px 0 24px; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { padding: 26px 22px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); transition: box-shadow .3s, transform .3s; }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card i { font-size: 1.7rem; color: var(--orange); margin-bottom: 14px; display: block; }
.why-card h3 { font-size: 1.25rem; }
.why-card p { color: var(--muted); font-size: .94rem; margin: 0; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.process-step {
  position: relative; padding: 34px 28px 28px; border-radius: var(--radius); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); transition: background .3s, border-color .3s;
}
.process-step:hover { background: rgba(255,255,255,.08); border-color: var(--orange); }
.process-step__num {
  font-family: var(--font-head); font-size: 3.4rem; line-height: 1; font-weight: 700; color: transparent;
  -webkit-text-stroke: 1.5px var(--orange); margin-bottom: 10px; display: block;
}
.process-step h3 { font-size: 1.4rem; }
.process-step p { color: #b9c3e3; margin: 0; font-size: .96rem; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.industry {
  display: flex; align-items: center; gap: 14px; padding: 18px 18px; border-radius: var(--radius);
  background: var(--white); border: 1px solid var(--line); font-weight: 600; transition: all .25s;
}
.industry i {
  width: 44px; height: 44px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--soft); color: var(--teal); font-size: 1.15rem; transition: all .25s;
}
.industry:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.industry:hover i { background: var(--orange); color: var(--white); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 36px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.service-card__icon {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; font-size: 1.9rem;
  background: linear-gradient(135deg, var(--orange), #ffa75a); color: var(--white);
}
.service-card:nth-child(2) .service-card__icon { background: linear-gradient(135deg, var(--navy), var(--teal)); }
.service-card p { color: var(--muted); }
.service-card .check-list { margin: 0; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item.open { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy);
}
.faq-q i {
  flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--soft); color: var(--orange); font-size: .8rem; transition: transform .25s, background .25s, color .25s;
}
.faq-item.open .faq-q i { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 22px 20px; margin: 0; color: var(--muted); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-aside {
  position: sticky; top: calc(var(--header-h) + 24px); border-radius: 14px; padding: 36px 32px; color: var(--white);
  background: linear-gradient(160deg, rgba(7,26,87,.93), rgba(10,115,153,.9)), url('../assets/img/rackimage2.jpg') center / cover;
}
.faq-aside h2 { color: var(--white); }
.faq-aside p { color: #d4dcf2; }
.faq-aside .btn { margin-top: 8px; }

/* Quote / form */
.quote-section {
  position: relative; color: var(--white);
  background: linear-gradient(100deg, rgba(4,16,58,.96) 0%, rgba(7,26,87,.9) 55%, rgba(7,26,87,.7) 100%), url('../assets/img/rackimage2.jpg') center / cover;
}
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.quote-copy h2 { color: var(--white); }
.quote-copy p { color: #c9d1ec; font-size: 1.08rem; }
.contact-lines { list-style: none; display: grid; gap: 16px; margin-top: 28px; }
.contact-lines li { display: flex; gap: 16px; align-items: flex-start; }
.contact-lines i {
  flex: none; width: 46px; height: 46px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(245,130,32,.15); color: var(--orange); font-size: 1.1rem;
}
.contact-lines small { display: block; color: #9eabd6; font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-lines a, .contact-lines strong { color: var(--white); font-weight: 600; font-size: 1.08rem; }
.contact-lines a:hover { color: var(--orange); }
.form-card { background: var(--white); color: var(--ink); border-radius: 14px; padding: 36px 34px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.8rem; margin-bottom: 4px; }
.form-card > p { color: var(--muted); margin-bottom: 22px; }
.enquiry-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.enquiry-form label { display: grid; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.enquiry-form .full { grid-column: 1 / -1; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea {
  width: 100%; padding: 13px 14px; border: 1px solid #cfd6e4; border-radius: 8px; background: #fbfcfe;
  font: inherit; font-size: 1rem; color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.enquiry-form textarea { min-height: 110px; resize: vertical; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus {
  outline: none; border-color: var(--orange); background: var(--white); box-shadow: 0 0 0 3px rgba(245,130,32,.18);
}
.enquiry-form .req { color: var(--orange); }
.enquiry-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { grid-column: 1 / -1; font-size: .85rem; color: var(--muted); margin: 0; display: flex; gap: 8px; align-items: center; }
.form-note i { color: var(--teal); }
.form-alert { grid-column: 1 / -1; padding: 12px 14px; border-radius: 8px; background: #fdecec; color: #9b1c1c; font-weight: 600; font-size: .95rem; display: none; }
.form-alert.show { display: block; }
.form-alert--ok { background: #e8f8ee; color: #10683c; }

/* CTA band */
.cta-band { background: linear-gradient(90deg, var(--orange), #ff9d45); color: var(--white); padding: 44px 0; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-band h2 { color: var(--white); margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { margin: 4px 0 0; color: #fff3e6; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-navy { box-shadow: 0 8px 20px rgba(4,16,58,.3); }

/* Footer */
.site-footer { background: var(--navy-900); color: #aeb8da; font-size: .96rem; }
.footer-top { padding-top: 72px; padding-bottom: 48px; display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.3fr; gap: 40px; }
.footer-logo { background: var(--white); display: inline-block; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; }
.footer-logo img { height: 50px; width: auto; }
.site-footer h4 {
  color: var(--white); font-size: 1.25rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
  padding-bottom: 12px; position: relative;
}
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--orange); }
.footer-links { list-style: none; display: grid; gap: 9px; }
.footer-links a { color: #aeb8da; display: inline-flex; gap: 8px; align-items: center; }
.footer-links a i { font-size: .65rem; color: var(--orange); }
.footer-links a:hover { color: var(--white); transform: translateX(3px); }
.footer-contact { list-style: none; display: grid; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; }
.footer-contact i { color: var(--orange); margin-top: 5px; width: 16px; flex: none; text-align: center; }
.footer-contact a { color: #dfe4f5; }
.footer-contact a:hover { color: var(--orange); }
.footer-contact strong { color: var(--white); display: block; font-weight: 600; }
.footer-contact .direction { font-size: .88rem; color: var(--orange); font-weight: 600; }
.site-footer .social { margin-top: 22px; }
.site-footer .social a { width: 38px; height: 38px; font-size: .95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; font-size: .9rem; }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* Floating rail */
.float-rail { position: fixed; left: 16px; bottom: 24px; z-index: 90; display: grid; gap: 12px; }
.float-rail a, .float-rail button {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; border: 0; cursor: pointer;
  color: var(--white); font-size: 1.3rem; box-shadow: 0 8px 20px rgba(0,0,0,.22); transition: transform .2s;
}
.float-rail a:hover, .float-rail button:hover { transform: scale(1.08); color: var(--white); }
.float-rail .fr-call { background: var(--orange); }
.float-rail .fr-wa { background: var(--green); font-size: 1.55rem; animation: pulse 2.4s infinite; }
.float-rail .fr-mail { background: var(--navy); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.back-to-top {
  position: fixed; right: 18px; bottom: 24px; z-index: 90; width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--navy); color: var(--white); cursor: pointer; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .25s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--orange); }

/* Modal */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.modal.open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(4,16,58,.7); backdrop-filter: blur(3px); }
.modal__dialog {
  position: relative; width: min(620px, 100%); max-height: calc(100vh - 40px); overflow: auto;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); transform: translateY(20px); transition: transform .25s;
}
.modal.open .modal__dialog { transform: none; }
.modal__head { background: var(--navy); color: var(--white); padding: 22px 28px; border-top: 4px solid var(--orange); }
.modal__head h3 { color: var(--white); margin: 0; font-size: 1.7rem; }
.modal__head p { margin: 2px 0 0; color: #c3cbe6; font-size: .95rem; }
.modal__body { padding: 24px 28px 28px; }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.12); color: var(--white); font-size: 1.1rem;
}
.modal__close:hover { background: var(--orange); }

/* Page banner */
.page-banner {
  position: relative; color: var(--white); padding: 84px 0 76px; text-align: center; overflow: hidden;
  background: var(--navy) url('../assets/img/rackimage3.jpg') center / cover no-repeat;
}
.page-banner::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,16,58,.94), rgba(7,26,87,.78)); }
.page-banner .container { position: relative; }
.page-banner h1 { color: var(--white); text-transform: uppercase; letter-spacing: 1px; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 12px; }
.page-banner p { color: #c9d1ec; max-width: 720px; margin: 0 auto 16px; }
.breadcrumb { list-style: none; display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 8px; padding: 8px 18px; border-radius: 40px; background: rgba(255,255,255,.1); font-size: .92rem; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--orange); }
.breadcrumb a { color: #e6ebf8; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb [aria-current] { color: var(--orange); font-weight: 600; }

/* Product detail */
.product-hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.product-gallery { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-sm); position: sticky; top: calc(var(--header-h) + 24px); }
.product-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 16px; }
.product-gallery .img-placeholder { aspect-ratio: 1 / 1; }
.product-summary .product-card__cat { font-size: .85rem; }
.product-summary h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.product-summary .lead { font-size: 1.12rem; color: var(--muted); }
.meta-table { width: 100%; border-collapse: collapse; margin: 22px 0 26px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.meta-table th, .meta-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.meta-table th { width: 42%; background: var(--soft); color: var(--navy); font-weight: 600; }
.meta-table tr:last-child th, .meta-table tr:last-child td { border-bottom: 0; }
.in-stock { color: #13894a; font-weight: 700; }
.product-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.product-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.product-highlights div { text-align: center; padding: 14px 8px; border: 1px dashed #cdd5e6; border-radius: 10px; font-size: .88rem; font-weight: 600; color: var(--navy); }
.product-highlights i { display: block; font-size: 1.3rem; color: var(--orange); margin-bottom: 6px; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 48px; align-items: start; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.4rem; margin-top: 1.4em; }
.prose p, .prose li { color: #3d465c; }
.prose ul:not(.check-list), .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .45em; }
.prose img { border-radius: 12px; margin: 10px 0 24px; }
.prose blockquote {
  margin: 1.6em 0; padding: 20px 24px; border-left: 4px solid var(--orange); background: var(--soft);
  border-radius: 0 10px 10px 0; font-size: 1.1rem; color: var(--navy); font-weight: 500;
}
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0 30px; }
.feature-list__item { display: flex; gap: 14px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.feature-list__item i { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(245,130,32,.12); color: var(--orange); }
.feature-list__item h3 { font-size: 1.15rem; margin: 0 0 4px; }
.feature-list__item p { margin: 0; font-size: .94rem; color: var(--muted); }
.spec-table { width: 100%; border-collapse: collapse; margin: 16px 0 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec-table caption { text-align: left; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--white); background: var(--navy); padding: 14px 18px; text-transform: uppercase; letter-spacing: 1px; }
.spec-table th, .spec-table td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { width: 42%; font-weight: 600; color: var(--navy); background: #f8fafd; }
.spec-table tr:nth-child(even) td { background: #fbfcfe; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 12px 0 30px; }
.tag-list li { padding: 8px 16px; border-radius: 40px; background: var(--soft); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--navy); }
.tag-list li i { color: var(--orange); margin-right: 6px; }

.sidebar { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }
.widget { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--white); }
.widget__title { background: var(--navy); color: var(--white); padding: 14px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin: 0; border-bottom: 3px solid var(--orange); }
.widget__body { padding: 18px 20px; }
.widget-links { list-style: none; }
.widget-links li + li { border-top: 1px solid var(--line); }
.widget-links a { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; color: var(--ink); font-weight: 500; }
.widget-links a i { font-size: .7rem; color: var(--orange); }
.widget-links a:hover, .widget-links a.current { color: var(--orange); }
.widget--cta { background: linear-gradient(160deg, var(--navy), var(--teal)); color: var(--white); border: 0; padding: 28px 24px; text-align: center; }
.widget--cta i.big { font-size: 2.4rem; color: var(--orange); margin-bottom: 10px; }
.widget--cta h3 { color: var(--white); font-size: 1.5rem; }
.widget--cta p { color: #d2daf1; font-size: .95rem; }
.widget--cta .btn { width: 100%; margin-top: 8px; }
.widget--cta .phone { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--white); font-weight: 700; margin: 4px 0 12px; }

.related { margin-top: 20px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; border-radius: 14px; overflow: hidden; background: var(--white); border: 1px solid var(--line); color: var(--ink); transition: transform .3s, box-shadow .3s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); color: var(--ink); }
.blog-card__img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__date {
  position: absolute; left: 18px; top: 18px; background: var(--orange); color: var(--white); border-radius: 8px;
  padding: 8px 12px; text-align: center; font-family: var(--font-head); line-height: 1.05; font-weight: 700;
}
.blog-card__date strong { display: block; font-size: 1.6rem; }
.blog-card__body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: .88rem; color: var(--muted); margin-bottom: 10px; }
.blog-meta i { color: var(--orange); margin-right: 5px; }
.blog-card h2 { font-size: 1.7rem; margin-bottom: 10px; }
.blog-card p { color: var(--muted); flex: 1; }
.article-hero img { border-radius: 14px; width: 100%; aspect-ratio: 16 / 8; object-fit: cover; margin-bottom: 26px; box-shadow: var(--shadow); }
.article-share { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 600; color: var(--navy); flex-wrap: wrap; }
.article-share a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--soft); color: var(--navy); }
.article-share a:hover { background: var(--orange); color: var(--white); }
.recent-post { display: flex; gap: 12px; align-items: center; padding: 10px 0; color: var(--ink); }
.recent-post + .recent-post { border-top: 1px solid var(--line); }
.recent-post img { width: 74px; height: 58px; object-fit: cover; border-radius: 8px; flex: none; }
.recent-post strong { font-size: .98rem; line-height: 1.3; display: block; }
.recent-post small { color: var(--muted); }

/* Contact page */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: -64px; position: relative; z-index: 2; }
.contact-card {
  background: var(--white); border-radius: 14px; padding: 30px 24px; text-align: center; box-shadow: var(--shadow);
  border-bottom: 4px solid var(--orange);
}
.contact-card i {
  width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 16px;
  background: var(--navy); color: var(--white); font-size: 1.4rem;
}
.contact-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--muted); margin: 0; font-size: .96rem; }
.contact-card a:hover { color: var(--orange); }
.contact-card a.strong { color: var(--navy); font-weight: 700; font-size: 1.1rem; }
.contact-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.map-wrap { position: relative; display: block; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; pointer-events: none; filter: saturate(1.05); }
.map-wrap__overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; padding: 18px;
  background: rgba(7, 26, 87, 0); transition: background .25s;
}
.map-wrap:hover .map-wrap__overlay, .map-wrap:focus-visible .map-wrap__overlay { background: rgba(7, 26, 87, .16); }
.map-wrap__pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 40px;
  background: var(--white); color: var(--navy); font-family: var(--font-head); font-weight: 700;
  font-size: 1.05rem; letter-spacing: .5px; text-transform: uppercase; box-shadow: var(--shadow);
  transition: background .25s, color .25s, transform .25s;
}
.map-wrap__pill i { color: var(--orange); transition: color .25s; }
.map-wrap:hover .map-wrap__pill { background: var(--orange); color: var(--white); transform: translateY(-3px); }
.map-wrap:hover .map-wrap__pill i { color: var(--white); }
.hours { list-style: none; display: grid; gap: 8px; margin: 18px 0 0; }
.hours li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.hours strong { color: var(--navy); }

/* About page */
.mvv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.mvv-card { padding: 36px 30px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); position: relative; overflow: hidden; }
.mvv-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(245,130,32,.08); }
.mvv-card i { font-size: 2rem; color: var(--orange); margin-bottom: 14px; display: block; }
.mvv-card p { color: var(--muted); margin: 0; }
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.founder__card { border-radius: 14px; overflow: hidden; background: linear-gradient(160deg, var(--navy), var(--teal)); color: var(--white); text-align: center; padding: 40px 24px; box-shadow: var(--shadow-lg); }
.founder__avatar { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; background: rgba(255,255,255,.12); border: 4px solid var(--orange); font-family: var(--font-head); font-size: 3.4rem; font-weight: 700; }
.founder__card h3 { color: var(--white); margin: 0; font-size: 1.7rem; }
.founder__card span { color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; font-size: .9rem; }
.founder__quote { font-size: 1.25rem; color: var(--navy); font-weight: 500; border-left: 4px solid var(--orange); padding-left: 22px; margin: 0 0 20px; line-height: 1.55; }
.cert-card { display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center; padding: 34px; border-radius: 14px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); max-width: 860px; margin: 0 auto; }
.cert-card__seal { width: 120px; height: 120px; border-radius: 50%; display: grid; place-items: center; align-content: center; background: var(--navy); color: var(--white); border: 5px solid var(--orange); font-family: var(--font-head); font-weight: 700; text-align: center; line-height: 1.1; }
.cert-card__seal strong { font-size: 1.9rem; color: var(--orange); }
.cert-card p { color: var(--muted); margin: 0; }

/* Thank you / 404 */
.message-page { text-align: center; padding: 110px 0; }
.message-page i.big { font-size: 4.5rem; color: #13894a; margin-bottom: 18px; }
.message-page p { color: var(--muted); max-width: 620px; margin: 0 auto 26px; font-size: 1.1rem; }
.message-page .hero__ctas .btn-outline { color: var(--navy); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
}

/* Responsive */
@media (max-width: 1180px) {
  .header-call { display: none; }
  .main-nav > ul > li > a { padding: 10px 12px; font-size: 1.02rem; }
  .solutions-grid, .product-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .brand img { height: 46px; }
  .nav-toggle { display: grid; place-items: center; }
  .header-actions .btn { display: none; }
  .main-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw); background: var(--white); z-index: 150;
    transform: translateX(100%); transition: transform .3s ease; overflow-y: auto; padding: 80px 0 30px; box-shadow: var(--shadow-lg);
  }
  body.nav-open .main-nav { transform: none; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(4,16,58,.55); z-index: 140; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .nav-close { position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); font-size: 1.2rem; cursor: pointer; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav > ul > li { flex-wrap: wrap; border-bottom: 1px solid var(--line); }
  .main-nav > ul > li > a { height: auto; padding: 14px 24px; flex: 1; }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav .caret { display: none; }
  .submenu-toggle { display: grid; place-items: center; width: 56px; align-self: stretch; border: 0; border-left: 1px solid var(--line); background: none; color: var(--navy); cursor: pointer; font-size: .9rem; }
  .has-mega.open .submenu-toggle i { transform: rotate(180deg); }
  .mega {
    position: static; transform: none; width: 100%; height: auto; opacity: 1; visibility: visible; display: none; box-shadow: none;
    border-top: 1px solid var(--line); border-radius: 0; padding: 0; background: var(--soft);
  }
  .has-mega:hover .mega, .has-mega:focus-within .mega { transform: none; }
  .has-mega.open .mega { display: block; }
  .mega-l1-wrap { width: auto; height: auto; padding: 0; border: 0; border-radius: 0; }
  .mega-l1 > li + li { border-top: 1px solid var(--line); }
  .mega-l1 > li > .mega-row > a { padding: 12px 8px 12px 24px; border-left: 0; font-size: 1rem; }
  .mega-l1 > li.is-open > .mega-row > a { background: none; color: var(--navy); }
  .mega-ico { width: 30px; height: 30px; font-size: .8rem; }
  .mega-row .chev { display: none; }
  .mega-toggle { display: grid; place-items: center; flex: none; width: 52px; border: 0; background: none; color: var(--navy); cursor: pointer; font-size: .85rem; }
  .mega-toggle i { transition: transform .2s; }
  .mega-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
  .mega-l2, .mega-l2--wide, .mega-l3 { position: static; width: auto; height: auto; padding: 0 12px 10px 38px; border: 0; }
  .mega-l1 > li.is-open > .mega-l2, .mega-sub > li.is-open > .mega-l3 { display: none; }
  .mega-l1 > li.m-open > .mega-l2, .mega-sub > li.m-open > .mega-l3 { display: block; }
  .mega-l2--wide ul { columns: 1; }
  .mega h4, .mega__help { display: none; }
  .mega-sub > li > .mega-row > a { padding: 9px 0; }
  .mega-sub > li.is-open > .mega-row > a { background: none; color: var(--navy); }
  .mega-sub > li.is-open .count { background: var(--white); color: var(--muted); }
  .mega-sub .count { margin-left: 8px; }
  .mega-l3 { padding: 0 0 8px 14px; }
  .mobile-nav-cta { display: grid; gap: 10px; padding: 24px; }
  .section { padding: 68px 0; }
  .about-grid, .quote-grid, .faq-wrap, .product-hero, .content-grid, .contact-layout, .founder { grid-template-columns: 1fr; gap: 40px; }
  .about-media { max-width: 560px; margin: 0 auto; }
  .faq-aside, .product-gallery, .sidebar { position: static; }
  .process-grid, .mvv-grid, .feature-grid--3, .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .hero__stats .container { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: 0; }
  .hero__stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero { display: block; min-height: 0; padding: 90px 0 0; }
  .hero__stats { position: relative; margin-top: 56px; }
  .founder__card { max-width: 340px; margin: 0 auto; width: 100%; }
}
@media (min-width: 961px) {
  .nav-close, .nav-backdrop, .mobile-nav-cta { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .topbar__contact .tb-email, .topbar__msme { display: none; }
  .topbar .social { display: none; }
  .topbar .container { justify-content: center; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .solutions-grid, .product-grid, .feature-grid, .process-grid, .mvv-grid, .why-cards, .feature-grid--3, .product-grid--3, .feature-list, .contact-cards, .check-list--2 { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .industry { padding: 12px; gap: 10px; font-size: .92rem; }
  .industry i { width: 36px; height: 36px; font-size: 1rem; }
  .hero { padding-top: 64px; }
  .hero__ctas .btn { width: 100%; }
  .hero__stat { flex-direction: column; text-align: center; gap: 4px; padding: 14px 6px; }
  .hero__stat span { text-align: center; }
  .about-media__badge { right: 12px; bottom: 12px; padding: 14px 18px; }
  .about-media__badge strong { font-size: 2.2rem; }
  .about-media__year { left: 12px; top: 12px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat strong { font-size: 2rem; }
  .service-card { grid-template-columns: 1fr; padding: 28px 22px; }
  .enquiry-form { grid-template-columns: 1fr; }
  .form-card { padding: 26px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; padding-top: 56px; padding-bottom: 36px; }
  .cta-band .container { text-align: center; justify-content: center; }
  .cta-band__actions { justify-content: center; width: 100%; }
  .cta-band__actions .btn { flex: 1 1 200px; }
  .product-highlights { grid-template-columns: repeat(3, 1fr); }
  .contact-cards { margin-top: -40px; }
  .cert-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .float-rail { left: 10px; bottom: 14px; gap: 10px; }
  .float-rail a, .float-rail button { width: 44px; height: 44px; font-size: 1.1rem; }
  .back-to-top { right: 10px; bottom: 14px; }
  .modal__body, .modal__head { padding-left: 20px; padding-right: 20px; }
  .spec-table th, .spec-table td, .meta-table th, .meta-table td { padding: 10px 12px; font-size: .94rem; }
  .why-highlight strong { font-size: 4.5rem; }
}
