:root {
  --blue: #062b86;
  --navy: #031a5b;
  --deep: #06132f;
  --orange: #f5a000;
  --gold: #ffc44d;
  --ink: #101828;
  --muted: #5f6b7c;
  --soft: #f3f6fb;
  --line: #e1e7f0;
  --white: #fff;
  --shadow: 0 20px 55px rgba(3, 26, 91, 0.12);
  --shadow-sm: 0 10px 30px rgba(3, 26, 91, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  line-height: 1.7;
  background: #fff;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.site-wrap {
  width: min(1380px, calc(100% - 48px));
  margin: auto;
}
.utility-bar {
  background: var(--navy);
  color: #fff;
  font-size: 14px;
}
.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-message {
  opacity: 0.86;
}
.utility-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
}
.utility-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.utility-contacts svg,
.footer-contact svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
  flex: none;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(3, 26, 91, 0.08);
  box-shadow: 0 8px 28px rgba(3, 26, 91, 0.06);
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  width: 205px;
  height: 76px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}
.main-nav a {
  white-space: nowrap;
}
.main-nav > a:not(.nav-quote) {
  position: relative;
}
.main-nav > a:not(.nav-quote)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 3px;
  background: var(--orange);
  transition: 0.3s;
}
.main-nav > a:hover::after,
.main-nav > a.active::after {
  right: 0;
}
.nav-quote {
  padding: 13px 20px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  box-shadow: 0 9px 22px rgba(245, 160, 0, 0.25);
  transition: 0.25s;
}
.nav-quote:hover {
  transform: translateY(-2px);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 9px;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 3px;
}
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
}
.eyebrow.light {
  color: var(--gold);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 900;
  border: 0;
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-3px);
}
.button-accent {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #111;
  box-shadow: 0 12px 25px rgba(245, 160, 0, 0.25);
}
.button-dark {
  background: var(--navy);
  color: #fff;
}
.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.text-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  margin-top: 18px;
}
.light-link {
  color: #fff;
}
.section {
  padding: 78px 0;
}
.section-white {
  background: #fff;
}
.section-soft {
  background: linear-gradient(180deg, #f7f9fd, #eef3fa);
}
.section-dark {
  background: linear-gradient(135deg, var(--deep), var(--blue));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
}
.section-dark > .site-wrap {
  position: relative;
}
.section-title {
  max-width: 850px;
  text-align: center;
  margin: 0 auto 38px;
}
.section-title.align-left {
  margin-left: 0;
  text-align: left;
}
.section-title h2,
.section-copy h2,
.map-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.14;
  letter-spacing: -1px;
  margin: 9px 0 16px;
  color: var(--navy);
}
.section-title.inverse h2,
.section-dark h2,
.quote-panel h3,
.coverage-panel h3,
.contact-info h2 {
  color: #fff;
}
.section-title p,
.section-copy p {
  color: var(--muted);
  font-size: 17px;
}
.section-title.inverse p {
  color: #d7e0f7;
}
.home-hero {
  position: relative;
  background: linear-gradient(105deg, #031a5b 0%, #062b86 58%, #0b48bd 100%);
  color: #fff;
  overflow: hidden;
}
.home-hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 72px solid rgba(245, 160, 0, 0.13);
  border-radius: 50%;
  right: -160px;
  top: -170px;
  animation: slowspin 22s linear infinite;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}
.home-hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero-copy h1 {
  font-size: clamp(46px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -2px;
  margin: 12px 0 18px;
  max-width: 800px;
}
.hero-copy > p {
  font-size: 18px;
  max-width: 720px;
  color: #e6ecff;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}
.hero-metrics div {
  padding: 14px 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.17);
  backdrop-filter: blur(10px);
}
.hero-metrics strong {
  display: block;
  color: var(--gold);
  font-size: 27px;
  line-height: 1.1;
}
.hero-metrics span {
  font-size: 13px;
  color: #e6ecff;
}
.hero-visual-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-4deg);
}
.hero-visual-frame img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 17px;
}
.hero-visual-label {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 30px;
  background: rgba(3, 26, 91, 0.9);
  border-left: 5px solid var(--orange);
  padding: 15px 18px;
  border-radius: 10px;
  display: grid;
}
.hero-visual-label span {
  font-size: 13px;
  color: #dbe4ff;
}
.client-showcase {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 20px;
}
.client-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}
.client-heading > span {
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}
.client-heading small {
  color: var(--muted);
}
.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 30s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.client-logo {
  width: 170px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.client-logo img {
  max-height: 74px;
  max-width: 145px;
}
.wide-split {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 64px;
  align-items: center;
}
.media-card {
  position: relative;
}
.media-card > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.media-stamp {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: grid;
  max-width: 330px;
}
.media-stamp span {
  font-size: 13px;
}
.replace-note {
  font-size: 12px;
  color: #6b5a28;
  background: #fff3cc;
  border: 1px dashed var(--orange);
  padding: 9px 12px;
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
}
.icon-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.icon-check-grid span {
  position: relative;
  padding: 13px 14px 13px 38px;
  background: var(--soft);
  border-radius: 10px;
  color: var(--navy);
  font-weight: 800;
}
.icon-check-grid span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-weight: 950;
}
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.service-card > img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.service-card:hover > img {
  transform: scale(1.04);
}
.service-card > div:last-child {
  padding: 24px;
}
.service-card h3 {
  font-size: 24px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 10px;
}
.service-card p {
  color: var(--muted);
}
.service-card a {
  font-weight: 900;
  color: var(--blue);
}
.service-icon {
  position: absolute !important;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid !important;
  place-items: center;
  background: var(--orange);
  color: #111;
  font-weight: 950;
  padding: 0 !important;
}
.product-showcase {
  background: linear-gradient(180deg, #fff, #f8faff);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.product-tile {
  padding: 25px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 25px rgba(3, 26, 91, 0.06);
  transition: 0.3s;
}
.product-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 160, 0, 0.7);
}
.product-tile > span,
.compact-product > span,
.catalog-card > span,
.approach-card > b,
.timeline-card > b {
  font-size: 13px;
  font-weight: 950;
  color: var(--orange);
  letter-spacing: 1px;
}
.product-tile h3,
.compact-product h3,
.catalog-card h3 {
  color: var(--navy);
  margin: 7px 0 8px;
}
.product-tile p,
.compact-product p,
.catalog-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 12px;
}
.process-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 19px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}
.process-row > b {
  font-size: 28px;
  color: var(--orange);
}
.process-row h3 {
  margin: 0;
  color: #fff;
}
.process-row p {
  margin: 3px 0;
  color: #d7e0f7;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
}
.location-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.location-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
}
.location-card > div {
  padding: 19px;
}
.location-card span {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 900;
}
.location-card h3 {
  margin: 3px 0;
  color: var(--navy);
  font-size: 22px;
}
.location-card p {
  font-size: 14px;
  color: var(--muted);
  min-height: 72px;
}
.location-card b {
  color: var(--blue);
  font-size: 14px;
}
.value-layout,
.decision-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 46px;
  align-items: stretch;
}
.value-copy h2,
.decision-copy h2 {
  font-size: clamp(35px, 4vw, 50px);
  line-height: 1.15;
  color: var(--navy);
  margin: 8px 0 16px;
}
.value-points {
  display: grid;
  gap: 14px;
  margin-top: 25px;
}
.value-points > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
}
.value-points b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--orange);
}
.quote-panel,
.coverage-panel,
.contact-info {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.quote-panel::after,
.coverage-panel::after,
.contact-info::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 32px solid rgba(245, 160, 0, 0.14);
  border-radius: 50%;
  right: -70px;
  top: -65px;
}
.quote-panel > *,
.coverage-panel > *,
.contact-info > * {
  position: relative;
  z-index: 1;
}
.quote-panel h3,
.coverage-panel h3 {
  font-size: 31px;
  line-height: 1.18;
}
.quote-panel li,
.coverage-panel li {
  margin: 8px 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 58px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(3, 26, 91, 0.05);
  padding: 0 20px;
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 34px 18px 0;
  font-weight: 900;
  color: var(--navy);
  position: relative;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--orange);
  font-size: 24px;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list p {
  color: var(--muted);
  margin: 0 0 18px;
}
.page-cta {
  padding: 0 0 78px;
  background: #fff;
}
.page-cta-box {
  background: linear-gradient(120deg, var(--orange), var(--gold));
  border-radius: 22px;
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  box-shadow: 0 18px 45px rgba(245, 160, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.page-cta-box::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border: 42px solid rgba(3, 26, 91, 0.08);
  border-radius: 50%;
  right: -70px;
  top: -100px;
}
.page-cta-box > div,
.page-cta-box > a {
  position: relative;
  z-index: 1;
}
.page-cta .eyebrow {
  color: var(--navy);
}
.page-cta h2 {
  font-size: clamp(30px, 3.5vw, 45px);
  line-height: 1.13;
  color: var(--navy);
  margin: 5px 0;
}
.page-cta p {
  margin: 0;
}
.inner-hero {
  background: linear-gradient(110deg, #031a5b, #062b86 70%, #0b48bd);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}
.inner-hero-grid {
  min-height: 300px;
  padding-top: 44px;
  padding-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 50px;
  position: relative;
}
.inner-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin: 10px 0 14px;
  max-width: 970px;
}
.inner-hero p {
  font-size: 18px;
  color: #dce5ff;
  max-width: 850px;
}
.inner-hero-art {
  height: 210px;
  position: relative;
}
.inner-hero-art span {
  position: absolute;
  background: var(--orange);
  transform-origin: center;
  box-shadow: 0 0 25px rgba(245, 160, 0, 0.2);
}
.inner-hero-art span:nth-child(1),
.inner-hero-art span:nth-child(2) {
  height: 100%;
  width: 7px;
  top: 0;
}
.inner-hero-art span:nth-child(1) {
  left: 45px;
}
.inner-hero-art span:nth-child(2) {
  right: 45px;
}
.inner-hero-art span:nth-child(3),
.inner-hero-art span:nth-child(4) {
  height: 7px;
  width: 100%;
  left: 0;
}
.inner-hero-art span:nth-child(3) {
  top: 55px;
  transform: rotate(24deg);
}
.inner-hero-art span:nth-child(4) {
  bottom: 55px;
  transform: rotate(-24deg);
}
.trust-ribbon {
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 25px rgba(3, 26, 91, 0.05);
}
.trust-ribbon > .site-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-ribbon span {
  padding: 15px 18px;
  text-align: center;
  font-weight: 850;
  color: var(--navy);
  border-right: 1px solid var(--line);
}
.trust-ribbon span:last-child {
  border-right: 0;
}
.trust-ribbon span::before {
  content: "✓";
  color: var(--orange);
  margin-right: 8px;
}
.compact-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.compact-product {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  padding: 22px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.compact-product:hover {
  transform: translateY(-5px);
  border-color: var(--orange);
}
.application-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 38px;
  align-items: stretch;
}
.application-main h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
  color: var(--navy);
  margin: 8px 0 25px;
}
.application-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.application-grid > div {
  padding: 22px;
  border-radius: 14px;
  background: var(--soft);
  border-left: 4px solid var(--orange);
}
.application-grid b {
  color: var(--navy);
  font-size: 18px;
}
.application-grid p {
  color: var(--muted);
  margin: 6px 0 0;
}
.coverage-note {
  margin-top: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-card {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.timeline-card h3 {
  color: #fff;
}
.timeline-card p {
  color: #d7e0f7;
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.tick-list li {
  position: relative;
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--line);
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 950;
}
.tick-list.light li {
  border-color: rgba(255, 255, 255, 0.15);
}
.requirement-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.requirement-card h3 {
  font-size: 29px;
  color: var(--navy);
  margin-top: 0;
}
.requirement-card dl {
  margin: 0 0 25px;
}
.requirement-card dl > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.requirement-card dt {
  font-weight: 900;
  color: var(--navy);
}
.requirement-card dd {
  margin: 0;
  color: var(--muted);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.catalog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.catalog-line {
  height: 5px;
  width: 48px;
  background: var(--orange);
  border-radius: 4px;
  margin-top: 18px;
  transition: 0.3s;
}
.catalog-card:hover .catalog-line {
  width: 100%;
}
.system-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.system-card {
  padding: 38px;
  border-radius: 21px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.system-card.dark {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
}
.system-card h2 {
  font-size: clamp(31px, 3.6vw, 45px);
  line-height: 1.15;
  color: var(--navy);
}
.system-card.dark h2 {
  color: #fff;
}
.shuttering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}
.shuttering-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.shuttering-card > span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  font-weight: 950;
  z-index: 2;
}
.shuttering-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
}
.shuttering-card h3,
.shuttering-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.shuttering-card h3 {
  color: var(--navy);
}
.shuttering-card p {
  color: var(--muted);
  margin-bottom: 24px;
}
.metric-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  position: relative;
}
.metric-band > div {
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
}
.metric-band strong {
  display: block;
  color: var(--gold);
  font-size: 42px;
  line-height: 1.1;
}
.metric-band span {
  color: #dce5ff;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.approach-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 25px;
  box-shadow: var(--shadow-sm);
}
.approach-card h3 {
  color: var(--navy);
}
.approach-card p {
  color: var(--muted);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.industry-grid article {
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.industry-grid span {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
}
.industry-grid h3 {
  color: var(--navy);
  font-size: 22px;
}
.industry-grid p {
  color: var(--muted);
}
.featured-blog {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 38px;
  align-items: stretch;
}
.featured-blog-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featured-blog-card > div {
  padding: 38px;
}
.featured-blog-card h2 {
  font-size: 36px;
  line-height: 1.18;
}
.featured-blog-card p {
  color: #dce5ff;
}
.featured-blog-card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.blog-intro {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
}
.blog-intro h2 {
  font-size: 36px;
  color: var(--navy);
  line-height: 1.2;
}
.blog-topic-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.blog-topic-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 13px;
  font-weight: 800;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.35s;
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.blog-image {
  position: relative;
  overflow: hidden;
}
.blog-image img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.blog-card:hover img {
  transform: scale(1.05);
}
.blog-image span {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--orange);
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 950;
}
.blog-body {
  padding: 24px;
}
.blog-body h2 {
  font-size: 23px;
  line-height: 1.27;
  color: var(--navy);
}
.blog-body p {
  color: var(--muted);
}
.blog-body b {
  color: var(--blue);
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
  align-items: start;
}
.article-lead {
  font-size: 21px;
  color: #465268;
  margin-top: 0;
}
.article-visual img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.article-section {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.article-section > span {
  font-weight: 950;
  color: var(--orange);
  font-size: 16px;
}
.article-section h2 {
  font-size: 34px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 10px;
}
.article-section p {
  font-size: 17px;
  color: var(--muted);
}
.article-disclaimer {
  margin-top: 30px;
  padding: 20px;
  border-radius: 12px;
  background: #fff3cc;
  border-left: 5px solid var(--orange);
}
.article-sidebar {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 18px;
}
.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sidebar-card.dark {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
}
.sidebar-card h3 {
  color: var(--navy);
}
.sidebar-card.dark h3 {
  color: #fff;
}
.sidebar-card > a:not(.button) {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.related-grid a {
  padding: 24px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: grid;
}
.related-grid span {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.related-grid b {
  color: var(--navy);
  font-size: 20px;
  margin-top: 5px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: stretch;
}
.contact-detail {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  margin-top: 22px;
}
.contact-detail > span {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--orange);
  font-weight: 950;
}
.contact-detail svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
}
.contact-detail small {
  display: block;
  color: #aebce2;
}
.contact-detail a {
  font-weight: 900;
}
.contact-detail p {
  margin: 0;
  color: #fff;
}
.enquiry-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-heading h2 {
  font-size: 38px;
  color: var(--navy);
  margin: 5px 0 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form-grid label {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}
.form-grid .full {
  grid-column: 1/-1;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 13px 14px;
  border: 1px solid #ccd5e3;
  border-radius: 9px;
  background: #fbfcfe;
  color: var(--ink);
}
.form-grid textarea {
  min-height: 135px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
}
.map-section {
  background: linear-gradient(180deg, #eef3fa, #fff);
}
.map-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 38px;
  align-items: center;
}
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 45px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 122px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--soft);
}
.legal-nav h3 {
  color: var(--navy);
}
.legal-nav a {
  display: block;
  padding: 8px 0;
  color: var(--blue);
  font-weight: 800;
}
.legal-section {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 29px 0;
  border-bottom: 1px solid var(--line);
}
.legal-section > span {
  color: var(--orange);
  font-weight: 950;
}
.legal-section h2 {
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 8px;
}
.legal-section p {
  font-size: 17px;
  color: var(--muted);
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.sitemap-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.sitemap-card h2 {
  color: var(--navy);
}
.sitemap-card a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
}
.not-found {
  text-align: center;
}
.not-found > span {
  font-size: 140px;
  font-weight: 950;
  line-height: 1;
  color: var(--orange);
}
.not-found h2 {
  font-size: 42px;
  color: var(--navy);
}
.not-found > div {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.site-footer {
  background: linear-gradient(145deg, #06132f, #081b42);
  color: #cdd6ea;
  padding-top: 54px;
}
.footer-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.15fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 38px;
}
.footer-brand > img {
  width: 230px;
  max-height: 150px;
  object-fit: contain;
  background: #fff;
  border-radius: 13px;
  padding: 7px;
}
.footer-brand p {
  max-width: 410px;
}
.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badges span {
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}
.footer-middle {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}
.site-footer h3 {
  color: #fff;
  margin-top: 0;
}
.footer-middle a {
  display: block;
  margin: 7px 0;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0;
}
.footer-contact a {
  margin: 0;
}
.footer-address {
  margin-top: 15px;
}
.footer-map iframe {
  width: 100%;
  height: 255px;
  border: 0;
  border-radius: 14px;
  display: block;
  background: #fff;
}
.footer-base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-base-inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}
.legal-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-base-inner > span:last-child {
  text-align: right;
}
.designer {
  color: var(--orange);
  font-weight: 900;
}
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1200;
  display: grid;
  gap: 10px;
}
.floating-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: 0.25s;
}
.floating-button:hover {
  transform: translateY(-4px) scale(1.04);
}
.floating-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.floating-button.phone {
  background: #0b3fa8;
}
.floating-button.whatsapp {
  background: #25d366;
  animation: pulse 2.4s infinite;
}
.animate-up,
.animate-left,
.animate-right {
  opacity: 1;
  transform: none;
}
@keyframes marquee {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}
@keyframes slowspin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.25),
      0 0 0 0 rgba(37, 211, 102, 0.42);
  }
  50% {
    box-shadow:
      0 12px 28px rgba(0, 0, 0, 0.25),
      0 0 0 13px rgba(37, 211, 102, 0);
  }
}
@media (max-width: 1180px) {
  .main-nav {
    gap: 18px;
  }
  .site-wrap {
    width: min(100% - 36px, 1180px);
  }
  .home-hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 35px;
  }
  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-grid,
  .compact-product-grid,
  .catalog-grid,
  .shuttering-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
  .footer-map {
    grid-column: 1/-1;
  }
  .footer-base-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 0;
  }
  .footer-base-inner > span:last-child {
    text-align: center;
  }
}
@media (max-width: 980px) {
  .utility-message {
    display: none;
  }
  .utility-inner {
    justify-content: center;
  }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(3, 26, 91, 0.25);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a {
    padding: 8px;
  }
  .main-nav > a::after {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .home-hero-grid,
  .wide-split,
  .process-layout,
  .value-layout,
  .decision-layout,
  .application-layout,
  .featured-blog,
  .contact-layout,
  .map-layout,
  .system-layout {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .home-hero-grid {
    min-height: 445px;
  }
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }
  .inner-hero-art {
    display: none;
  }
  .service-card-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .timeline-grid,
  .approach-grid,
  .industry-grid,
  .metric-band {
    grid-template-columns: 1fr 1fr;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-nav {
    position: static;
  }
  .footer-middle {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 680px) {
  .site-wrap {
    width: calc(100% - 26px);
  }
  .utility-bar {
    font-size: 12px;
  }
  .utility-contacts {
    gap: 12px;
  }
  .utility-contacts span {
    display: none;
  }
  .nav-wrap {
    height: 78px;
  }
  .brand img {
    width: 168px;
    height: 64px;
  }
  .main-nav {
    top: 100%;
  }
  .section {
    padding: 58px 0;
  }
  .home-hero-grid {
    min-height: 430px;
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .hero-copy h1 {
    font-size: 42px;
  }
  .hero-copy > p {
    font-size: 16px;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .hero-metrics div:last-child {
    grid-column: 1/-1;
  }
  .client-heading {
    display: block;
  }
  .client-heading small {
    display: block;
  }
  .client-logo {
    width: 140px;
    height: 75px;
  }
  .media-card > img {
    height: 330px;
  }
  .media-stamp {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -35px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .icon-check-grid,
  .service-card-grid,
  .product-grid,
  .compact-product-grid,
  .catalog-grid,
  .shuttering-grid,
  .location-grid,
  .timeline-grid,
  .approach-grid,
  .industry-grid,
  .metric-band,
  .application-grid,
  .blog-grid,
  .related-grid,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
  .trust-ribbon > .site-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .trust-ribbon span:nth-child(2) {
    border-right: 0;
  }
  .trust-ribbon span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .section-title h2,
  .section-copy h2,
  .map-copy h2 {
    font-size: 34px;
  }
  .page-cta-box {
    display: block;
    padding: 30px 24px;
  }
  .page-cta-box .button {
    margin-top: 18px;
  }
  .inner-hero-grid {
    min-height: 250px;
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .inner-hero h1 {
    font-size: 40px;
  }
  .inner-hero p {
    font-size: 16px;
  }
  .requirement-card dl > div {
    grid-template-columns: 1fr;
  }
  .article-visual img {
    height: 280px;
  }
  .article-section,
  .legal-section {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .article-section h2 {
    font-size: 28px;
  }
  .article-sidebar {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: auto;
  }
  .footer-layout,
  .footer-middle {
    grid-template-columns: 1fr;
  }
  .footer-map {
    grid-column: auto;
  }
  .footer-map iframe {
    height: 220px;
  }
  .footer-base-inner {
    font-size: 13px;
  }
  .legal-links {
    gap: 10px;
  }
  .not-found > span {
    font-size: 100px;
  }
  .not-found > div {
    flex-direction: column;
  }
  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
  .floating-button {
    width: 50px;
    height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .logo-track,
  .home-hero::after,
  .floating-button.whatsapp {
    animation: none !important;
  }
  .animate-up,
  .animate-left,
  .animate-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Real photography and enquiry-form enhancements */
.hero-image-slider {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 17px;
}
.hero-image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.hero-image-slide.is-active {
  opacity: 1;
}
.hero-image-controls {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: 28px;
  display: flex;
  gap: 8px;
}
.hero-image-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.hero-image-dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
}
.inner-hero-art.has-photo {
  height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.inner-hero-art.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 26, 91, 0.05), rgba(3, 26, 91, 0.28));
  pointer-events: none;
}
.inner-hero-art.has-photo .inner-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-hero-art.has-photo span {
  display: none;
}
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.5;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  color: #075d2c;
  background: #e9f8ef;
  border: 1px solid #a9dfbc;
}
.form-status.is-error {
  color: #8b1d1d;
  background: #fff0f0;
  border: 1px solid #efb1b1;
}
.enquiry-form button[disabled] {
  cursor: wait;
  opacity: 0.7;
}
@media (max-width: 991px) {
  .hero-image-slider {
    height: 300px;
  }
}


/* V15 performance-first visual polish */
html {
  scroll-behavior: auto;
}

body {
  overflow-x: hidden;
}

.site-header {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(3, 26, 91, 0.08);
}

/* Content appears immediately. No blur, delay or scroll-triggered reveal. */
.animate-up,
.animate-left,
.animate-right {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

/* Disable continuous GPU-heavy animations. */
.home-hero::before,
.home-hero::after,
.inner-hero-photo,
.page-cta-box,
.page-cta-box::after,
.floating-button.whatsapp,
.section-title h2::after,
.section-copy h2::after,
.contact-info h2::after {
  animation: none !important;
}

.logo-track {
  animation: none !important;
}

.home-hero::after {
  transform: none;
}

.hero-image-slide,
.hero-slide {
  transition: opacity 0.35s ease !important;
  animation: none !important;
  transform: none !important;
}

.inner-hero-photo {
  transform: none !important;
}

/* Keep attractive, lightweight hover feedback only. */
.button,
.nav-quote,
.client-logo,
.service-card,
.product-tile,
.location-card,
.approach-card,
.timeline-card,
.catalog-card,
.system-card,
.shuttering-card,
.blog-card,
.requirement-card,
.sidebar-card,
.media-card img,
.blog-card img,
.location-card img,
.shuttering-card img,
.article-visual img,
.floating-button {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover,
.nav-quote:hover {
  transform: translateY(-2px);
}

.service-card:hover,
.product-tile:hover,
.location-card:hover,
.approach-card:hover,
.timeline-card:hover,
.catalog-card:hover,
.system-card:hover,
.shuttering-card:hover,
.blog-card:hover,
.requirement-card:hover,
.sidebar-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 160, 0, 0.34);
  box-shadow: 0 14px 28px rgba(3, 26, 91, 0.10);
}

.media-card:hover img,
.blog-card:hover img,
.location-card:hover img,
.shuttering-card:hover img,
.article-visual:hover img {
  transform: scale(1.012);
}

/* Remove animated light sweeps and cursor-following gradients. */
.nav-quote::before,
.button::before,
.service-card::before,
.product-tile::before,
.location-card::before,
.approach-card::before,
.timeline-card::before,
.catalog-card::before,
.system-card::before,
.shuttering-card::before,
.blog-card::before,
.requirement-card::before,
.sidebar-card::before,
.service-card::after,
.product-tile::after,
.location-card::after,
.approach-card::after,
.timeline-card::after,
.catalog-card::after,
.system-card::after,
.shuttering-card::after,
.blog-card::after,
.requirement-card::after,
.sidebar-card::after,
.media-card::after,
.article-visual::after,
.blog-image::after {
  display: none !important;
}

.inner-hero-art.has-photo:hover,
.hero-visual-frame:hover,
.enquiry-form:focus-within,
.faq-list details:hover,
.faq-list details[open] {
  transform: none;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(245, 160, 0, 0.35);
  box-shadow: 0 8px 18px rgba(3, 26, 91, 0.07);
}

.floating-button:hover {
  transform: translateY(-2px);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 160, 0, 0.11);
  transform: none;
  outline: 0;
}

.enquiry-form.is-submitted > :not(.form-success-panel) {
  display: none;
}

.form-success-panel[hidden] {
  display: none;
}

.form-success-panel {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7f9fd);
}

.form-success-icon,
.thank-you-check {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #15a05c, #23ca78);
  box-shadow: 0 14px 28px rgba(21, 160, 92, 0.20);
}

.form-success-icon svg,
.thank-you-check svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.form-success-panel h3 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.form-success-panel p {
  max-width: 580px;
  color: var(--muted);
}

.form-success-actions,
.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.form-reset-button {
  border: 1px solid rgba(3, 26, 91, 0.18);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}

.thank-you-card {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff, #f8faff);
  box-shadow: var(--shadow);
}

.thank-you-check {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-card h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 8px 0 16px;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 18px;
}

.thank-you-card p a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 767px) {
  .service-card:hover,
  .product-tile:hover,
  .location-card:hover,
  .approach-card:hover,
  .timeline-card:hover,
  .catalog-card:hover,
  .system-card:hover,
  .shuttering-card:hover,
  .blog-card:hover,
  .requirement-card:hover,
  .sidebar-card:hover {
    transform: none;
  }

  .form-success-panel {
    min-height: 390px;
    padding: 22px 12px;
  }

  .form-success-actions .button,
  .thank-you-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
