:root {
  --navy-950: #061b31;
  --navy-900: #0b2d4f;
  --navy-800: #123f66;
  --blue-600: #078dc5;
  --cyan-500: #10b6e8;
  --cyan-100: #dcf7ff;
  --orange-500: #f7941d;
  --green-500: #45b649;
  --ink: #14283b;
  --muted: #607386;
  --line: #dce6ed;
  --surface: #ffffff;
  --surface-soft: #f4f8fb;
  --shadow-sm: 0 8px 30px rgba(9, 43, 75, .08);
  --shadow-lg: 0 24px 70px rgba(5, 29, 54, .17);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 3000;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  box-shadow: 0 0 14px rgba(16,182,232,.55);
  pointer-events: none;
}

.skip-link {
  position: fixed; left: 16px; top: -100px; z-index: 9999;
  background: white; color: var(--navy-900); padding: 10px 16px;
  border-radius: 8px; box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: white; background: var(--navy-950); }

.topbar { background: var(--navy-950); color: #d9e9f4; font-size: .84rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 24px; }
.topbar a:hover { color: white; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11,45,79,.08);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 35px rgba(9,43,75,.1); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 260px; max-width: 52vw; }
.brand img { width: 100%; max-height: 70px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 30px; color: #253d51; font-size: .94rem; font-weight: 650; }
.primary-nav > a:not(.nav-cta) { position: relative; }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--cyan-500); transition: right .25s ease; }
.primary-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 11px 17px; border-radius: 999px; color: white; background: var(--navy-900); }
.nav-cta:hover { background: var(--blue-600); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--surface-soft); padding: 11px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--navy-900); transition: .2s ease; }

.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 78% 15%, rgba(16,182,232,.2), transparent 34%), linear-gradient(135deg, #061b31 0%, #0b2d4f 57%, #0b456d 100%); }
.hero-grid { min-height: 720px; padding-top: 90px; padding-bottom: 90px; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 80px; position: relative; z-index: 2; }
.hero-copy { max-width: 665px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan-500); text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 800; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-blue { color: var(--blue-600); }
.hero h1 { max-width: 740px; margin: 18px 0 22px; font-size: clamp(2.8rem, 5.4vw, 5rem); line-height: 1.04; letter-spacing: -.045em; }
.hero-lead { max-width: 650px; margin: 0; color: #cde0ed; font-size: 1.14rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { min-height: 50px; padding: 13px 23px; border: 1px solid transparent; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-weight: 750; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--cyan-500), var(--blue-600)); color: white; box-shadow: 0 10px 28px rgba(16,182,232,.24); }
.button-primary:hover { background: linear-gradient(135deg, #27c5f3, #057fb2); }
.button-outline-light { border-color: rgba(255,255,255,.35); color: white; background: rgba(255,255,255,.04); }
.button-outline-light:hover { background: white; color: var(--navy-900); }
.button-white { background: white; color: var(--navy-900); }
.hero-trust { display: flex; gap: 38px; margin-top: 46px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-trust div { display: grid; gap: 1px; }
.hero-trust strong { font-size: 1.13rem; }
.hero-trust span { color: #9fb9cb; font-size: .82rem; }
.hero-visual { position: relative; padding: 20px 5px 36px 34px; }
.hero-image-frame { overflow: hidden; border-radius: 30px; border: 1px solid rgba(255,255,255,.2); box-shadow: var(--shadow-lg); transform: rotate(1.5deg); background: #fff; }
.hero-image-frame img { width: 100%; aspect-ratio: 1.02 / 1; object-fit: cover; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border-radius: 15px; color: var(--ink); background: rgba(255,255,255,.95); box-shadow: var(--shadow-lg); backdrop-filter: blur(10px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: .88rem; }
.floating-card small { margin-top: 1px; color: var(--muted); font-size: .73rem; }
.floating-card-top { left: -16px; top: 76px; animation: floatCard 5.4s ease-in-out infinite; }
.floating-card-bottom { right: -12px; bottom: 0; animation: floatCard 6.2s ease-in-out -1.6s infinite reverse; }
.status-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 6px rgba(69,182,73,.14); }
.mini-icon { width: 31px; height: 31px; display: grid; place-items: center; color: white; border-radius: 9px; background: var(--orange-500); font-weight: 800; }
.hero-shape { position: absolute; left: -5%; bottom: -150px; width: 55%; height: 230px; background: rgba(16,182,232,.08); border-radius: 50%; transform: rotate(-8deg); }

.trust-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: white;
}
.trust-strip-inner {
  min-height: 122px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}
.trust-strip-inner > span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  white-space: nowrap;
}
.logo-marquee {
  min-width: 0;
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 22px;
  animation: logoMarquee 24s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-pill {
  width: 205px;
  height: 76px;
  flex: 0 0 205px;
  display: grid;
  place-items: center;
  padding: 10px 18px;
  border: 1px solid #dbe7ee;
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 28px rgba(9,43,75,.07);
  animation: logoFloat 4.5s ease-in-out infinite;
}
.logo-pill:nth-child(2n) { animation-delay: -.9s; }
.logo-pill:nth-child(3n) { animation-delay: -1.8s; }
.logo-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.98);
}

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 85px; align-items: center; }
.section-copy h2, .section-heading h2, .cta-band h2, .contact-info h2 { margin: 14px 0 20px; color: var(--navy-900); font-size: clamp(2rem, 3.5vw, 3.25rem); line-height: 1.15; letter-spacing: -.035em; }
.section-copy p, .section-heading p, .contact-info > p { color: var(--muted); font-size: 1.02rem; }
.cert-badges { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.cert-badges span { padding: 8px 12px; border: 1px solid #cfe2eb; border-radius: 999px; color: var(--navy-800); background: #f8fcfe; font-size: .82rem; font-weight: 750; }
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.value-card { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.values-wide { grid-column: 1 / -1; min-height: auto; }
.icon-shell { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; color: white; background: linear-gradient(135deg, var(--navy-900), var(--cyan-500)); font-size: 1.45rem; }
.value-card h3 { margin: 19px 0 9px; color: var(--navy-900); font-size: 1.18rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: #bdd1df; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 30px rgba(9,43,75,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover {
  transform: translateY(-9px);
  border-color: #acd6e7;
  box-shadow: 0 24px 55px rgba(9,43,75,.16);
}
.service-media {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: var(--navy-900);
}
.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,27,49,.06) 25%, rgba(6,27,49,.82) 100%);
  pointer-events: none;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: serviceImageDrift 11s ease-in-out infinite alternate;
  will-change: transform;
}
.service-card:nth-child(2n) .service-media img { animation-delay: -3s; }
.service-card:nth-child(3n) .service-media img { animation-delay: -6s; }
.service-card:hover .service-media img { animation-play-state: paused; transform: scale(1.13); }
.service-media > span {
  position: absolute;
  left: 20px;
  bottom: 16px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: white;
  background: rgba(6,27,49,.72);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.service-number {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 2;
  color: rgba(255,255,255,.92);
  text-shadow: 0 3px 18px rgba(0,0,0,.35);
  font-size: 2.15rem;
  font-weight: 900;
  line-height: 1;
}
.service-body { padding: 27px 28px 30px; }
.service-card h3 { margin: 0 0 12px; color: var(--navy-900); font-size: 1.25rem; }
.service-card p { margin: 0 0 18px; color: var(--muted); font-size: .94rem; }
ul { padding-left: 19px; }
.service-card ul { margin: 0; color: #3c5366; font-size: .88rem; }
.service-card li + li { margin-top: 6px; }

.solutions-section { background: radial-gradient(circle at 100% 0, rgba(16,182,232,.15), transparent 30%), linear-gradient(135deg, #061b31, #0b2d4f); }
.solutions-layout { display: grid; grid-template-columns: 310px 1fr; gap: 24px; align-items: stretch; }
.solution-tabs { display: grid; align-content: start; gap: 10px; }
.solution-tab { width: 100%; padding: 17px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; text-align: left; color: #b9cedd; background: rgba(255,255,255,.04); font-weight: 700; transition: .2s ease; }
.solution-tab:hover, .solution-tab.active { color: white; border-color: rgba(16,182,232,.55); background: rgba(16,182,232,.14); }
.solution-panel { min-height: 390px; padding: 42px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(255,255,255,.07); box-shadow: inset 0 1px 0 rgba(255,255,255,.08); }
.solution-content { display: none; }
.solution-content.active { display: block; animation: fadeUp .35s ease; }
.solution-kicker { color: var(--cyan-500); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.solution-content h3 { margin: 11px 0 13px; font-size: clamp(1.8rem, 3vw, 2.65rem); line-height: 1.15; }
.solution-content > p { max-width: 720px; color: #c5d7e3; }
.feature-columns { margin-top: 25px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-columns ul { margin: 0; padding: 0; list-style: none; }
.feature-columns li { position: relative; padding-left: 25px; color: #e5eff5; }
.feature-columns li + li { margin-top: 11px; }
.feature-columns li::before { content: "✓"; position: absolute; left: 0; color: var(--cyan-500); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.process-step { position: relative; padding: 26px 18px 24px; border-top: 3px solid var(--cyan-500); background: white; box-shadow: var(--shadow-sm); }
.process-step:nth-child(2), .process-step:nth-child(5) { border-color: var(--orange-500); }
.process-step:nth-child(3), .process-step:nth-child(6) { border-color: var(--green-500); }
.process-step span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: white; font-weight: 800; }
.process-step h3 { margin: 17px 0 8px; color: var(--navy-900); font-size: 1rem; line-height: 1.3; }
.process-step p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.55; }

.industries-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 65px; align-items: center; }
.text-link { display: inline-flex; gap: 8px; margin-top: 18px; color: var(--blue-600); font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.industry-grid span { min-height: 68px; display: flex; align-items: center; padding: 17px; border: 1px solid #d9e7ee; border-radius: 12px; color: var(--navy-800); background: white; font-size: .9rem; font-weight: 720; box-shadow: 0 5px 18px rgba(9,43,75,.04); }
.industry-grid span::before { content: ""; width: 8px; height: 8px; flex: 0 0 8px; margin-right: 10px; border-radius: 50%; background: var(--cyan-500); }

.certificate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.certificate-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.certificate-image { position: relative; height: 300px; overflow: hidden; background: #eef4f7; }
.certificate-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .35s ease; }
.certificate-image span { position: absolute; right: 13px; bottom: 13px; padding: 8px 12px; border-radius: 999px; color: white; background: rgba(6,27,49,.85); backdrop-filter: blur(8px); font-size: .77rem; font-weight: 750; }
.certificate-card:hover .certificate-image img { transform: scale(1.035); }
.certificate-copy { padding: 22px; }
.certificate-status { color: var(--blue-600); text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; font-weight: 850; }
.certificate-copy h3 { margin: 8px 0 8px; color: var(--navy-900); font-size: 1.15rem; }
.certificate-copy p { margin: 0; color: var(--muted); font-size: .9rem; }

.gallery-section { background: #f7fafc; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 320px 320px; gap: 16px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: var(--navy-900); text-align: left; box-shadow: var(--shadow-sm); }
.gallery-large { grid-row: 1 / 3; }
.gallery-item:nth-child(4) { grid-column: 2 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s ease, opacity .4s ease; }
.gallery-item::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(5,24,43,.9)); }
.gallery-item > span { position: absolute; left: 22px; right: 22px; bottom: 19px; z-index: 2; color: white; }
.gallery-item strong, .gallery-item small { display: block; }
.gallery-item strong { font-size: 1.05rem; }
.gallery-item small { margin-top: 2px; color: #c4d9e6; }
.gallery-item:hover img { transform: scale(1.04); opacity: .9; }

.cta-band { padding: 72px 0; color: white; background: linear-gradient(135deg, var(--blue-600), var(--cyan-500)); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.cta-band .eyebrow { color: #d8f7ff; }
.cta-band h2 { max-width: 780px; margin-bottom: 0; color: white; }

.contact-section { background: white; }
.contact-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 13px; margin-top: 35px; }
.contact-list a, .contact-list > div { padding: 15px 0; border-bottom: 1px solid var(--line); display: grid; }
.contact-list span { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 780; }
.contact-list strong { margin-top: 3px; color: var(--navy-900); font-size: 1.04rem; }
.contact-list a:hover strong { color: var(--blue-600); }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface-soft); box-shadow: var(--shadow-sm); }
.form-heading h3 { margin: 0; color: var(--navy-900); font-size: 1.45rem; }
.form-heading p { margin: 5px 0 24px; color: var(--muted); font-size: .89rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: grid; gap: 7px; color: #314a5e; font-size: .83rem; font-weight: 750; }
.full-width { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid #cbdbe4; border-radius: 10px; color: var(--ink); background: white; outline: none; padding: 12px 13px; transition: border .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 4px rgba(16,182,232,.12); }
textarea { resize: vertical; }
.form-submit { margin-top: 20px; border: 0; }
.form-note { min-height: 24px; margin: 10px 0 0; color: var(--green-500); font-size: .84rem; }

.site-footer { padding: 66px 0 24px; color: #bfd0dc; background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.65fr 1fr 1fr 1.2fr; gap: 55px; }
.footer-brand img { width: 270px; max-width: 100%; padding: 8px 10px; border-radius: 10px; background: white; }
.footer-brand p { max-width: 310px; margin-top: 18px; color: #9fb7c7; }
.footer-grid h3 { margin: 0 0 15px; color: white; font-size: .95rem; }
.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 9px; }
.footer-grid a, .footer-grid span { color: #a8becd; font-size: .88rem; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 35px; color: #7f9bad; font-size: .74rem; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { max-width: 580px; text-align: right; }

.whatsapp-float { position: fixed; right: 20px; bottom: 20px; z-index: 900; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: #25d366; box-shadow: 0 12px 34px rgba(0,0,0,.2); transition: transform .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp-float svg { width: 31px; fill: white; }

.gallery-modal { width: min(92vw, 900px); max-height: 92vh; padding: 0; border: 0; border-radius: 18px; overflow: hidden; background: #071b2e; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.gallery-modal::backdrop { background: rgba(2,13,24,.8); backdrop-filter: blur(4px); }
.gallery-modal figure { margin: 0; display: grid; grid-template-rows: minmax(0,1fr) auto; max-height: 92vh; }
.gallery-modal img { width: 100%; max-height: 82vh; object-fit: contain; background: #eef4f7; }
.gallery-modal figcaption { padding: 14px 18px; color: white; }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: rgba(5,24,43,.8); font-size: 1.7rem; line-height: 1; }

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(.985);
  filter: blur(3px);
  transition: opacity .72s ease, transform .82s cubic-bezier(.2,.75,.25,1), filter .72s ease;
  will-change: opacity, transform;
}
.reveal-delay { transition-delay: .12s; }
.reveal.visible {
  opacity: 1;
  transform: translate3d(0,0,0) scale(1);
  filter: blur(0);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes floatCard {
  0%, 100% { transform: translate3d(0,0,0) rotate(0); }
  50% { transform: translate3d(0,-12px,0) rotate(.6deg); }
}
@keyframes logoMarquee {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(calc(-50% - 11px),0,0); }
}
@keyframes logoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes serviceImageDrift {
  0% { transform: scale(1.06) translate3d(-1.5%,0,0); }
  100% { transform: scale(1.13) translate3d(1.5%,-1.5%,0); }
}

@media (max-width: 1080px) {
  .primary-nav { gap: 19px; font-size: .88rem; }
  .hero-grid { gap: 45px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 880px) {
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; top: 82px; left: 20px; right: 20px; display: none; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: var(--shadow-lg); }
  .primary-nav.open { display: grid; gap: 6px; }
  .primary-nav a { padding: 10px 12px; }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 4px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-top: 72px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 620px; margin-inline: auto; }
  .trust-strip-inner { min-height: 108px; grid-template-columns: 1fr; gap: 4px; padding: 18px 0; }
  .trust-strip-inner > span { text-align: center; }
  .logo-pill { width: 185px; flex-basis: 185px; }
  .split-layout, .industries-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .solutions-layout { grid-template-columns: 1fr; }
  .solution-tabs { grid-template-columns: repeat(2, 1fr); }
  .certificate-grid { grid-template-columns: 1fr 1fr; }
  .certificate-card:last-child { grid-column: 1 / -1; width: calc(50% - 11px); justify-self: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 470px 300px 300px; }
  .gallery-large { grid-column: 1 / -1; grid-row: auto; }
  .gallery-item:nth-child(4) { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 12px; font-size: .73rem; }
  .nav-wrap { height: 72px; }
  .brand { width: 220px; }
  .primary-nav { top: 72px; }
  .hero-grid { padding-top: 58px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 3.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; }
  .hero-visual { padding-left: 0; }
  .floating-card-top { left: -4px; top: 48px; }
  .floating-card-bottom { right: -4px; }
  .floating-card { max-width: 230px; padding: 11px; }
  .logo-marquee { width: calc(100vw - 28px); }
  .logo-track { gap: 14px; animation-duration: 20s; }
  .logo-pill { width: 160px; height: 64px; flex-basis: 160px; padding: 8px 13px; }
  .values-grid, .services-grid, .feature-columns, .form-grid { grid-template-columns: 1fr; }
  .values-wide, .full-width { grid-column: auto; }
  .service-card { width: 100%; }
  .service-media { height: 215px; }
  .solution-tabs { grid-template-columns: 1fr; }
  .solution-panel { padding: 28px 22px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .certificate-grid { grid-template-columns: 1fr; }
  .certificate-card:last-child { grid-column: auto; width: 100%; }
  .certificate-image { height: 360px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 420px); }
  .gallery-large, .gallery-item:nth-child(4) { grid-column: auto; }
  .cta-band-inner { display: grid; }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
  .footer-bottom p:last-child { text-align: left; }
}


@media (max-width: 760px) {
  .topbar { display: none; }
  html { scroll-padding-top: 74px; }
  .site-header { top: 0; }
  .hero-image-frame { border-radius: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-media { height: clamp(205px, 58vw, 300px); }
  .section-heading { margin-bottom: 34px; }
}

@media (max-width: 420px) {
  .topbar-links a:last-child { display: none; }
  .topbar-links { justify-content: center; }
  .hero-trust, .process-grid, .industry-grid { grid-template-columns: 1fr; }
  .certificate-image { height: 300px; }
  .gallery-grid { grid-template-rows: repeat(4, 360px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .logo-track, .logo-pill, .service-media img, .floating-card { animation: none !important; }
}

.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* 2026 profile content enhancements */
.service-card { display:flex; flex-direction:column; }
.service-body { flex:1; }
.services-grid .service-card:nth-child(8) { grid-column:auto; }
.gallery-item img { background:#eef4f7; }
.hero-image-frame img { object-fit:contain; padding:18px; background:#fff; }
.brand img, .footer-brand img { object-fit:contain; }
@media (max-width: 620px){ .hero-image-frame img{padding:8px;} .service-media{height:190px;} .topbar p{display:none;} }

/* Landing page viewport-fit refinement */
:root {
  --desktop-topbar-height: 38px;
  --desktop-nav-height: 76px;
}

@media (min-width: 881px) {
  .topbar-inner {
    height: var(--desktop-topbar-height);
    min-height: var(--desktop-topbar-height);
  }

  .nav-wrap {
    height: var(--desktop-nav-height);
  }

  .brand {
    width: 220px;
    max-width: 28vw;
  }

  .brand img {
    max-height: 62px;
  }

  .hero-grid {
    min-height: calc(100svh - var(--desktop-topbar-height) - var(--desktop-nav-height));
    padding-top: clamp(22px, 3.5vh, 34px);
    padding-bottom: clamp(24px, 4vh, 40px);
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(36px, 4vw, 68px);
    align-items: center;
  }

  .hero-copy {
    align-self: start;
    padding-top: 2px;
    max-width: 690px;
  }

  .hero h1 {
    max-width: 690px;
    margin: 12px 0 15px;
    font-size: clamp(3rem, 4.15vw, 4.25rem);
    line-height: 1.01;
  }

  .hero-lead {
    max-width: 680px;
    font-size: clamp(.98rem, 1.02vw, 1.08rem);
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-trust {
    gap: 28px;
    margin-top: 25px;
    padding-top: 18px;
  }

  .hero-trust strong {
    font-size: 1rem;
  }

  .hero-visual {
    align-self: center;
    padding: 8px 4px 24px 26px;
  }

  .hero-image-frame img {
    height: clamp(360px, 55vh, 505px);
    aspect-ratio: auto;
    padding: 12px;
  }

  .floating-card-top {
    top: 48px;
  }
}

@media (min-width: 881px) and (max-height: 730px) {
  .hero-grid {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 3.9vw, 3.75rem);
    margin-bottom: 12px;
  }

  .hero-lead {
    font-size: .96rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 17px;
  }

  .button {
    min-height: 46px;
    padding-block: 10px;
  }

  .hero-trust {
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-image-frame img {
    height: min(52vh, 430px);
  }
}

@media (min-width: 681px) and (max-width: 880px) {
  .hero-grid {
    min-height: calc(100svh - 120px);
    grid-template-columns: 1.05fr .95fr;
    gap: 24px;
    padding-top: 28px;
    padding-bottom: 32px;
    align-items: center;
  }

  .hero-copy {
    align-self: start;
  }

  .hero h1 {
    margin: 12px 0 14px;
    font-size: clamp(2.55rem, 6vw, 3.25rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: .94rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 18px;
    gap: 9px;
  }

  .button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: .86rem;
  }

  .hero-trust {
    gap: 15px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .hero-trust strong {
    font-size: .88rem;
  }

  .hero-trust span {
    font-size: .7rem;
  }

  .hero-visual {
    padding: 0 0 20px 12px;
  }

  .hero-image-frame img {
    height: min(48vh, 390px);
    aspect-ratio: auto;
    padding: 9px;
  }

  .floating-card {
    max-width: 205px;
    padding: 10px 12px;
  }

  .floating-card-top {
    left: -8px;
    top: 40px;
  }
}

@media (max-width: 680px) {
  .hero-grid {
    min-height: calc(100svh - 72px);
    padding-top: 24px;
    padding-bottom: 28px;
    gap: 18px;
    align-content: start;
  }

  .hero-copy {
    align-self: start;
  }

  .eyebrow {
    font-size: .66rem;
    letter-spacing: .1em;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    margin: 10px 0 12px;
    font-size: clamp(2.18rem, 11vw, 2.85rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: .92rem;
    line-height: 1.48;
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 17px;
  }

  .button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: .82rem;
  }

  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 17px;
    padding-top: 13px;
  }

  .hero-trust strong {
    font-size: .82rem;
  }

  .hero-trust span {
    font-size: .64rem;
    line-height: 1.25;
  }

  .hero-visual {
    width: min(100%, 390px);
    padding: 0;
  }

  .hero-image-frame img {
    height: clamp(155px, 31vh, 220px);
    aspect-ratio: auto;
    padding: 6px;
  }

  .floating-card {
    max-width: 190px;
    padding: 8px 10px;
  }

  .floating-card strong {
    font-size: .72rem;
  }

  .floating-card small {
    font-size: .61rem;
  }

  .floating-card-top {
    top: 22px;
    left: -3px;
  }

  .floating-card-bottom {
    right: -3px;
    bottom: -6px;
  }
}

@media (max-width: 420px) {
  .hero-grid {
    padding-top: 20px;
    padding-bottom: 22px;
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10.8vw, 2.45rem);
  }

  .hero-lead {
    font-size: .86rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-trust {
    display: none;
  }

  .hero-image-frame img {
    height: clamp(140px, 25vh, 180px);
  }

  .floating-card-bottom {
    display: none;
  }
}


/* Final polish pass: matched service imagery, smoother motion, tighter mobile spacing */
.services-grid {
  gap: clamp(18px, 2vw, 26px);
}
.service-card {
  height: 100%;
  isolation: isolate;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(16,182,232,.04), transparent 32%, transparent 68%, rgba(247,148,29,.05));
  opacity: 0;
  transition: opacity .35s ease;
}
.service-card:hover::before { opacity: 1; }
.service-media {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 210px;
  max-height: 245px;
}
.service-media img {
  object-position: center center;
  transform-origin: center center;
  animation: serviceImageDriftSmooth 14s cubic-bezier(.45,.05,.2,1) infinite alternate;
}
.service-card:nth-child(1) .service-media img { object-position: center center; }
.service-card:nth-child(2) .service-media img { object-position: center 34%; }
.service-card:nth-child(3) .service-media img { object-position: center center; }
.service-card:nth-child(4) .service-media img { object-position: center center; }
.service-card:nth-child(5) .service-media img { object-position: center center; }
.service-card:nth-child(6) .service-media img { object-position: center 52%; }
.service-card:nth-child(7) .service-media img { object-position: center center; }
.service-card:nth-child(8) .service-media img { object-position: center center; }
.service-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card h3 {
  min-height: 2.5em;
  display: flex;
  align-items: flex-start;
}
.service-card p {
  min-height: 4.8em;
}
.service-card ul { margin-top: auto; }
.services-grid .reveal { transition-delay: calc(var(--reveal-delay, 0) * 1ms); }
.gallery-item img { object-position: center center; }
.gallery-item:last-child img { object-position: center top; }
.section-heading.centered { margin-bottom: clamp(28px, 4vw, 46px); }

@keyframes serviceImageDriftSmooth {
  0% { transform: scale(1.05) translate3d(-1%, 0, 0); }
  50% { transform: scale(1.09) translate3d(0, -1.2%, 0); }
  100% { transform: scale(1.12) translate3d(1.2%, -0.4%, 0); }
}

@media (max-width: 880px) {
  .services-grid {
    gap: 20px;
  }
  .service-body {
    padding: 22px 22px 24px;
  }
}

@media (max-width: 640px) {
  .section { padding: 62px 0; }
  .section-heading { margin-bottom: 28px; }
  .services-grid { gap: 16px; }
  .service-card { border-radius: 18px; }
  .service-media {
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 9;
  }
  .service-body {
    padding: 18px 18px 20px;
  }
  .service-card h3 {
    min-height: auto;
    font-size: 1.14rem;
    margin-bottom: 10px;
  }
  .service-card p {
    min-height: auto;
    margin-bottom: 14px;
    font-size: .92rem;
  }
  .service-card ul {
    font-size: .86rem;
  }
  .process-grid, .industry-grid, .footer-grid { gap: 14px; }
  .gallery-grid { gap: 14px; }
  .contact-layout { gap: 34px; }
  .contact-form { padding: 20px 16px; border-radius: 18px; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 56px 0; }
  .service-media > span {
    left: 14px;
    bottom: 12px;
    font-size: .66rem;
    padding: 6px 10px;
  }
  .service-number {
    top: 12px;
    right: 14px;
    font-size: 1.9rem;
  }
  .service-body { padding: 16px 16px 18px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; }
}


/* Premium pass: loader, counters, rotator, particles, mobile nav animation */
body.nav-open { overflow: hidden; }
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, rgba(16,182,232,.14), transparent 32%), linear-gradient(135deg, #061b31 0%, #0a2947 50%, #0b456d 100%);
  transition: opacity .55s ease, visibility .55s ease;
}
.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  width: min(92vw, 420px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}
.loader-inner img {
  width: min(270px, 72vw);
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.loader-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.loader-bar span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
  animation: loaderSweep 1.2s ease-in-out infinite;
}
.loader-inner p {
  margin: 0;
  color: #d7e6f2;
  font-size: .95rem;
  letter-spacing: .02em;
}
.hero { isolation: isolate; }
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: .55;
  pointer-events: none;
}
.hero-trust div {
  position: relative;
  padding-right: 14px;
}
.hero-trust div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.hero-trust strong.counter {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: #fff;
}
.hero-trust span {
  margin-top: 5px;
}
.menu-toggle {
  transition: background .25s ease, transform .25s ease;
}
.menu-toggle.open {
  background: rgba(7,141,197,.10);
}
.menu-toggle span {
  transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@keyframes loaderSweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(230%); }
}

@media (max-width: 880px) {
  .primary-nav {
    display: grid !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px) scale(.985);
    transform-origin: top center;
    transition: opacity .25s ease, transform .28s ease, visibility .25s ease;
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px) {
  .hero-trust div {
    padding-right: 0;
  }
  .hero-trust div::after {
    display: none;
  }
}


/* Deployment pass: landing visual integration, SEO assets, and final polish */
.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(16,182,232,.26), rgba(16,182,232,.08) 48%, transparent 72%);
  filter: blur(10px);
  z-index: 0;
}
.hero-image-frame {
  position: relative;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
  transform: none;
}
.hero-image-frame img {
  width: 100%;
  object-fit: contain;
  background: transparent !important;
  padding: 0 !important;
  filter: drop-shadow(0 26px 38px rgba(0,0,0,.22));
}
.floating-card { z-index: 3; }
.hero-shape { opacity: .7; }

@media (min-width: 881px) {
  .hero-visual {
    padding: 8px 0 24px 12px;
  }
  .hero-image-frame img {
    height: clamp(360px, 58vh, 560px);
  }
}

@media (max-width: 880px) {
  .hero-visual::before { inset: 6% 0 8%; }
}

@media (max-width: 680px) {
  .hero-visual {
    width: min(100%, 420px);
    margin-inline: auto;
  }
  .hero-image-frame img {
    height: clamp(220px, 42vh, 330px) !important;
  }
}


/* 2026 premium visual refresh: hero, services and process */
.hero.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 24%, rgba(34, 211, 238, .12), transparent 20%),
    radial-gradient(circle at 20% 90%, rgba(9, 43, 75, .22), transparent 28%),
    linear-gradient(120deg, #061a31 0%, #0a3158 48%, #082949 100%);
}
.hero.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 92%);
  opacity: .16;
  pointer-events: none;
}
.hero-grid { align-items: center; gap: clamp(28px, 4vw, 52px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { max-width: 11ch; font-size: clamp(3rem, 6vw, 5.35rem); line-height: .98; margin-bottom: 18px; letter-spacing: -.04em; }
.hero-lead { max-width: 680px; font-size: clamp(1rem, 1.5vw, 1.14rem); color: #d4e5f1; }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 10% 4% 8%;
  border-radius: 30px;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.1), transparent 40%);
  pointer-events: none;
}
.hero-image-frame { position: relative; z-index: 2; width: min(100%, 760px); }
.hero-image-frame img { width: 100%; height: auto !important; max-height: 560px; object-fit: contain; filter: drop-shadow(0 32px 55px rgba(0,0,0,.32)); animation: heroVisualFloat 7s ease-in-out infinite; }
.floating-card { z-index: 3; border: 1px solid rgba(255,255,255,.45); box-shadow: 0 20px 45px rgba(3,18,35,.22); }
.floating-card-top { left: 2%; top: 8%; }
.floating-card-bottom { right: -1%; bottom: 9%; }
.status-dot { box-shadow: 0 0 0 7px rgba(67, 201, 96, .18); }

.services-grid { gap: 24px; }
.service-card { border: 1px solid #d7e7f0; box-shadow: 0 14px 34px rgba(9,43,75,.08); animation: serviceCardFloat 8s ease-in-out infinite; }
.service-card:nth-child(2n) { animation-delay: -1.2s; }
.service-card:nth-child(3n) { animation-delay: -2.4s; }
.service-card:hover { transform: translateY(-12px) scale(1.01); box-shadow: 0 28px 58px rgba(9,43,75,.18); }
.service-media { background: #071b32; }
.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3,20,38,.12) 0%, rgba(2,18,34,.18) 24%, rgba(0,54,92,.56) 68%, rgba(2,18,34,.82) 100%),
    radial-gradient(circle at 84% 18%, rgba(30, 212, 255, .26), transparent 26%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.service-media::after {
  background: linear-gradient(180deg, rgba(1,18,35,.14) 6%, rgba(6,29,54,.20) 34%, rgba(6,27,49,.88) 100%);
}
.service-media img { filter: saturate(.93) contrast(1.02) brightness(.82); }
.service-card:hover .service-media img { filter: saturate(1) contrast(1.04) brightness(.92); }
.service-media > span { z-index: 3; background: rgba(5, 25, 44, .74); border-color: rgba(129, 208, 255, .28); box-shadow: 0 10px 20px rgba(0,0,0,.14); }
.service-number { z-index: 3; font-size: 2.45rem; color: rgba(255,255,255,.96); }
.service-body { position: relative; background: linear-gradient(180deg, #ffffff 0%, #fcfeff 100%); }
.service-body::before { content: ""; position: absolute; left: 24px; right: 24px; top: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(16,182,232,.2), transparent); }

#process { position: relative; background: linear-gradient(180deg, #f7fbfe 0%, #ffffff 100%); }
.process-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; align-items: stretch; }
.process-step { position: relative; overflow: hidden; padding: 24px 22px 24px; border: 1px solid #dbe9f1; border-top-width: 4px; border-radius: 22px; background: linear-gradient(180deg, #ffffff 0%, #fafdff 100%); box-shadow: 0 12px 28px rgba(9,43,75,.06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.process-step::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: linear-gradient(90deg, var(--cyan-500), transparent 75%); opacity: .9; }
.process-step:nth-child(2), .process-step:nth-child(5) { border-top-color: var(--orange-500); }
.process-step:nth-child(2)::after, .process-step:nth-child(5)::after { background: linear-gradient(90deg, var(--orange-500), transparent 75%); }
.process-step:nth-child(3), .process-step:nth-child(6) { border-top-color: var(--green-500); }
.process-step:nth-child(3)::after, .process-step:nth-child(6)::after { background: linear-gradient(90deg, var(--green-500), transparent 75%); }
.process-step:nth-child(4), .process-step:nth-child(7) { border-top-color: var(--blue-600); }
.process-step:nth-child(4)::after, .process-step:nth-child(7)::after { background: linear-gradient(90deg, var(--blue-600), transparent 75%); }
.process-step:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(9,43,75,.14); }
.process-step-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.process-step-icon { width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; border-radius: 18px; color: white; background: linear-gradient(135deg, #0a2d52, #19b7ef); box-shadow: 0 14px 28px rgba(16,182,232,.22); }
.process-step:nth-child(2) .process-step-icon, .process-step:nth-child(5) .process-step-icon { background: linear-gradient(135deg, #8a4700, #f7941d); box-shadow: 0 14px 28px rgba(247,148,29,.25); }
.process-step:nth-child(3) .process-step-icon, .process-step:nth-child(6) .process-step-icon { background: linear-gradient(135deg, #0f5d2d, #49be56); box-shadow: 0 14px 28px rgba(73,190,86,.22); }
.process-step:nth-child(4) .process-step-icon, .process-step:nth-child(7) .process-step-icon { background: linear-gradient(135deg, #114d8b, #2fb5ff); box-shadow: 0 14px 28px rgba(47,181,255,.24); }
.process-step-icon svg { width: 28px; height: 28px; }
.process-step-number { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--navy-900); background: #edf5fb; border: 1px solid #d5e5ef; font-weight: 900; font-size: 1rem; }
.process-step h3 { margin: 0 0 10px; font-size: 1.08rem; }
.process-step p { font-size: .9rem; line-height: 1.65; }

@keyframes heroVisualFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes serviceCardFloat {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 1200px) {
  .process-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .hero-copy h1 { max-width: 12ch; }
}
@media (max-width: 880px) {
  .hero-grid { gap: 18px; }
  .hero-copy h1 { font-size: clamp(2.6rem, 10vw, 4rem); max-width: 12ch; }
  .hero-visual { min-height: 0; padding: 8px 0 18px; }
  .hero-image-frame { width: min(100%, 540px); }
  .hero-image-frame img { max-height: 430px; }
  .floating-card-top { left: 0; top: 3%; }
  .floating-card-bottom { right: 0; bottom: 4%; }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .hero-copy h1 { max-width: none; }
  .hero-visual::before { width: 88%; right: 6%; top: 8%; }
  .hero-image-frame img { max-height: 320px; }
  .floating-card { max-width: 220px; }
  .service-card { animation: none; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 22px 18px 20px; }
}


/* Ultra-premium navigation, footer, spacing and interaction polish */
:root {
  --header-glass: rgba(255,255,255,.88);
  --premium-shadow: 0 20px 60px rgba(5,29,54,.14);
}

body::selection { background: rgba(16,182,232,.24); color: var(--navy-950); }
.section { padding-block: clamp(78px, 8vw, 112px); }
.section-heading { margin-bottom: clamp(34px, 4vw, 52px); }
.section-heading h2 { text-wrap: balance; }
.section-heading p { max-width: 680px; margin-inline: auto; }

.topbar {
  background: linear-gradient(90deg, #05172a, #0a3157 55%, #082746);
}
.topbar-inner {
  position: relative;
}
.topbar-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16,182,232,.45), transparent);
}

.site-header {
  background: var(--header-glass);
  border-bottom: 1px solid rgba(10,48,82,.10);
  box-shadow: 0 6px 30px rgba(6,31,56,.04);
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 16px 42px rgba(6,31,56,.12);
}
.nav-wrap { position: relative; }
.brand {
  transition: transform .3s ease, filter .3s ease;
}
.brand:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 8px 16px rgba(9,43,75,.10));
}
.primary-nav {
  gap: clamp(18px, 2vw, 30px);
}
.primary-nav > a:not(.nav-cta) {
  padding-block: 12px;
  color: #203a50;
  transition: color .25s ease, transform .25s ease;
}
.primary-nav > a:not(.nav-cta)::after {
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
  transition: left .28s ease, right .28s ease;
}
.primary-nav > a:not(.nav-cta):hover,
.primary-nav > a:not(.nav-cta).active {
  color: var(--blue-600);
  transform: translateY(-1px);
}
.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta).active::after {
  left: 0;
  right: 0;
}
.nav-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, #092c50, #0b4f79);
  box-shadow: 0 12px 28px rgba(7,71,108,.20);
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-110%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.30), transparent);
  transition: transform .55s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 16px 34px rgba(16,182,232,.26);
}
.nav-cta:hover::before { transform: translateX(110%) skewX(-18deg); }

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(6,43,75,.12);
}
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transition: transform .65s ease;
}
.button:hover::after { transform: translateX(120%) skewX(-18deg); }
.button:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(6,43,75,.18); }
.button:active { transform: translateY(-1px) scale(.99); }
.button:focus-visible,
.primary-nav a:focus-visible,
.menu-toggle:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(16,182,232,.35);
  outline-offset: 3px;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(3,16,30,.54);
  backdrop-filter: blur(5px);
  transition: opacity .28s ease, visibility .28s ease;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 26px;
  background:
    radial-gradient(circle at 0 20%, rgba(16,182,232,.12), transparent 26%),
    radial-gradient(circle at 100% 80%, rgba(247,148,29,.08), transparent 24%),
    linear-gradient(135deg, #041629, #072642 52%, #092d4d);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 95%);
}
.footer-cta {
  position: relative;
  z-index: 2;
  transform: translateY(-38px);
  margin-bottom: 4px;
  padding: clamp(26px, 4vw, 42px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(13,91,133,.96), rgba(6,39,72,.96));
  box-shadow: 0 30px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.15);
}
.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 85% 15%, rgba(45,220,255,.24), transparent 24%);
}
.footer-cta > * { position: relative; z-index: 1; }
.footer-cta-kicker {
  display: block;
  margin-bottom: 8px;
  color: #8ce8ff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-cta h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.14;
  text-wrap: balance;
}
.footer-cta-button {
  flex: 0 0 auto;
  gap: 10px;
  color: #082946;
  background: white;
  box-shadow: 0 18px 36px rgba(0,0,0,.18);
}
.footer-cta-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .25s ease;
}
.footer-cta-button:hover svg { transform: translateX(4px); }
.footer-grid {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}
.footer-brand img {
  width: 255px;
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0,0,0,.20);
}
.footer-brand p {
  max-width: 360px;
  line-height: 1.75;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(139,214,243,.22);
  border-radius: 999px;
  color: #b9e8f8;
  background: rgba(255,255,255,.05);
  font-size: .7rem;
  font-weight: 750;
}
.footer-column h3 {
  position: relative;
  padding-bottom: 12px;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan-500), var(--blue-600));
}
.footer-column a {
  position: relative;
  width: fit-content;
  padding-left: 0;
  transition: color .25s ease, transform .25s ease;
}
.footer-column a:hover { transform: translateX(4px); color: white; }
.footer-contact a,
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #8ce8ff;
  background: rgba(16,182,232,.10);
  border: 1px solid rgba(16,182,232,.16);
  font-weight: 800;
}
.footer-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.footer-quick-actions a {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  font-size: .75rem;
}
.footer-bottom {
  position: relative;
  z-index: 2;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 890;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  box-shadow: 0 14px 32px rgba(5,29,54,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.whatsapp-float {
  animation: whatsappPulse 3.2s ease-in-out infinite;
}
@keyframes whatsappPulse {
  0%,100% { box-shadow: 0 12px 34px rgba(0,0,0,.2), 0 0 0 0 rgba(37,211,102,.25); }
  50% { box-shadow: 0 16px 42px rgba(0,0,0,.24), 0 0 0 12px rgba(37,211,102,0); }
}

@media (max-width: 880px) {
  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(88vw, 390px);
    padding: 92px 24px 30px;
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 90% 0, rgba(16,182,232,.12), transparent 28%),
      linear-gradient(180deg, #ffffff, #f5fafe);
    box-shadow: -24px 0 60px rgba(3,20,38,.20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity .28s ease, transform .34s cubic-bezier(.2,.75,.25,1), visibility .28s ease;
    overflow-y: auto;
    z-index: 1001;
  }
  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }
  .primary-nav a {
    padding: 14px 15px;
    border-bottom: 1px solid #e5eef4;
    border-radius: 10px;
    font-size: 1rem;
  }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .primary-nav > a:not(.nav-cta):hover,
  .primary-nav > a:not(.nav-cta).active {
    transform: translateX(4px);
    background: #edf7fc;
  }
  .primary-nav .nav-cta {
    margin-top: 12px;
    border-bottom: 0;
    text-align: center;
  }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    border: 1px solid #dbe9f1;
    background: white;
    box-shadow: 0 10px 24px rgba(9,43,75,.10);
  }
  .menu-toggle.open {
    position: fixed;
    top: 22px;
    right: 22px;
  }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-cta-button { width: auto; }
}

@media (max-width: 640px) {
  .section { padding-block: 64px; }
  .section-heading { margin-bottom: 30px; }
  .site-footer { padding-bottom: 22px; }
  .footer-cta {
    transform: translateY(-26px);
    padding: 24px 20px;
    border-radius: 22px;
  }
  .footer-cta-button { width: 100%; }
  .footer-grid { gap: 34px 24px; }
  .footer-column { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 32px; }
  .back-to-top { right: 16px; bottom: 84px; width: 44px; height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
}


/* Landing alignment refinement — compact, balanced and viewport fitted */
@media (min-width: 881px) {
  .hero-grid {
    min-height: calc(100svh - 114px);
    padding-top: clamp(24px, 3.2vh, 38px);
    padding-bottom: clamp(24px, 3.5vh, 42px);
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
    gap: clamp(28px, 3.2vw, 58px);
    align-items: center;
  }

  .hero-copy {
    align-self: center;
    max-width: 760px;
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: 720px;
    margin: 0 0 18px;
    font-size: clamp(3.25rem, 4.35vw, 4.65rem);
    line-height: 1.01;
    letter-spacing: -.045em;
    text-wrap: balance;
  }

  .hero-lead {
    max-width: 690px;
    font-size: clamp(.98rem, 1.13vw, 1.1rem);
    line-height: 1.62;
  }

  .hero-actions {
    margin-top: 25px;
    gap: 14px;
  }

  .hero-trust {
    max-width: 700px;
    margin-top: 27px;
    padding-top: 20px;
    gap: 26px;
  }

  .hero-trust div {
    min-width: 0;
    flex: 1 1 0;
  }

  .hero-trust strong.counter {
    font-size: clamp(1.45rem, 1.8vw, 1.85rem);
  }

  .hero-trust span {
    font-size: .78rem;
    line-height: 1.35;
  }

  .hero-visual {
    align-self: center;
    min-height: 0;
    height: min(64vh, 570px);
    padding: 8px 0 18px;
  }

  .hero-image-frame {
    width: min(100%, 700px);
    display: grid;
    place-items: center;
  }

  .hero-image-frame img {
    width: 100%;
    height: auto !important;
    max-height: min(58vh, 520px);
  }

  .floating-card-top {
    left: 0;
    top: 7%;
  }

  .floating-card-bottom {
    right: 0;
    bottom: 5%;
  }
}

@media (min-width: 881px) and (max-height: 760px) {
  .hero-grid {
    min-height: calc(100svh - 114px);
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 4vw, 4rem);
    margin-bottom: 13px;
  }

  .hero-lead {
    font-size: .96rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 19px;
  }

  .hero-trust {
    margin-top: 20px;
    padding-top: 15px;
  }

  .hero-visual {
    height: min(60vh, 485px);
  }

  .hero-image-frame img {
    max-height: min(54vh, 455px);
  }
}

@media (max-width: 880px) {
  .hero-grid {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .hero-copy h1 {
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.02;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-trust {
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .hero-grid {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .hero-lead {
    font-size: .92rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-trust {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Final fix: make gallery / solution tiles even and aligned */
.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, minmax(340px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
}
.gallery-large,
.gallery-item:nth-child(4) {
  grid-column: auto !important;
  grid-row: auto !important;
}
.gallery-item {
  min-height: 340px;
  height: 100%;
  display: block;
  border-radius: 26px;
  border: 1px solid #d6e4ee;
  box-shadow: 0 16px 34px rgba(9,43,75,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.gallery-item::after {
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(4,24,42,.58) 55%, rgba(4,24,42,.88) 100%);
}
.gallery-item > span {
  left: 28px;
  right: 28px;
  bottom: 24px;
}
.gallery-item strong {
  font-size: clamp(1.18rem, 1.6vw, 1.5rem);
  line-height: 1.15;
  margin-bottom: 8px;
}
.gallery-item small {
  font-size: 1rem;
  line-height: 1.45;
  color: #dbe8f2;
}
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(9,43,75,.16);
}
.gallery-item:hover img {
  transform: scale(1.035);
  opacity: 1;
}

@media (max-width: 1200px) {
  .gallery-grid {
    gap: 18px !important;
    grid-template-rows: repeat(2, minmax(300px, 1fr)) !important;
  }
  .gallery-item {
    min-height: 300px;
  }
}

@media (max-width: 880px) {
  .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, minmax(300px, auto)) !important;
  }
  .gallery-item {
    min-height: 300px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    gap: 14px !important;
    grid-template-rows: repeat(4, minmax(250px, auto)) !important;
  }
  .gallery-item {
    min-height: 250px;
    border-radius: 20px;
  }
  .gallery-item > span {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .gallery-item strong {
    font-size: 1.05rem;
  }
  .gallery-item small {
    font-size: .92rem;
  }
}


/* Small gallery tiles and centered Technology in Action heading */
.gallery-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: center;
}
.gallery-section .section-heading .eyebrow {
  justify-content: center;
}
.gallery-section .section-heading p {
  margin-left: auto;
  margin-right: auto;
  max-width: 680px;
}
.gallery-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(2, 270px) !important;
  gap: 18px !important;
}
.gallery-item {
  min-height: 270px !important;
  height: 270px !important;
  border-radius: 22px;
}
.gallery-item > span {
  left: 22px;
  right: 22px;
  bottom: 18px;
}
.gallery-item strong {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  margin-bottom: 5px;
}
.gallery-item small {
  font-size: .92rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .gallery-grid {
    width: min(100%, 760px);
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, 260px) !important;
  }
  .gallery-item {
    min-height: 260px !important;
    height: 260px !important;
  }
}

@media (max-width: 560px) {
  .gallery-section .section-heading {
    margin-bottom: 26px;
  }
  .gallery-grid {
    grid-template-rows: repeat(4, 220px) !important;
    gap: 14px !important;
  }
  .gallery-item {
    min-height: 220px !important;
    height: 220px !important;
    border-radius: 18px;
  }
  .gallery-item > span {
    left: 16px;
    right: 16px;
    bottom: 15px;
  }
  .gallery-item strong {
    font-size: 1rem;
  }
  .gallery-item small {
    font-size: .86rem;
  }
}


/* Final polish: footer repair + slower landing-page motion */
.footer-cta {
  margin-inline: auto;
  margin-bottom: 10px;
  padding: clamp(24px, 3.2vw, 34px) clamp(22px, 3.8vw, 42px);
  gap: 26px;
  border-radius: 34px;
}
.footer-cta h2 {
  max-width: 680px;
  font-size: clamp(1.55rem, 2.65vw, 2.45rem);
}
.footer-cta-button {
  min-width: 280px;
  justify-content: center;
  padding-inline: 26px;
}
.footer-grid {
  grid-template-columns: minmax(260px, 1.2fr) .85fr .85fr 1fr;
  gap: 36px 42px;
  align-items: start;
}
.footer-brand img {
  width: 220px;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}
.footer-brand p {
  max-width: 340px;
  margin-top: 18px;
  font-size: 1rem;
}
.footer-column h3 {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.footer-column a,
.footer-column span,
.footer-contact-row {
  font-size: .98rem;
  line-height: 1.65;
}
.footer-contact a,
.footer-contact-row {
  margin-bottom: 6px;
}
.footer-contact-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 14px;
  font-size: 1rem;
}
.footer-quick-actions {
  margin-top: 14px;
  gap: 12px;
}
.footer-quick-actions a {
  padding: 10px 16px;
  font-size: .92rem;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* slower, softer hero motion */
.hero-image-frame img {
  animation-duration: 14s !important;
}
.floating-card-top {
  animation-duration: 12s !important;
}
.floating-card-bottom {
  animation-duration: 14s !important;
}
.service-card {
  animation-duration: 16s !important;
}
.whatsapp-float {
  animation-duration: 5.2s !important;
}
.back-to-top {
  transition-duration: .35s;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 30px 28px;
  }
  .footer-contact {
    grid-column: 1 / -1;
  }
}
@media (max-width: 880px) {
  .footer-cta {
    transform: translateY(-30px);
    border-radius: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-cta-button {
    min-width: 0;
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .footer-cta {
    padding: 22px 18px;
    transform: translateY(-22px);
    border-radius: 24px;
  }
  .footer-cta h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }
  .footer-cta-button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-column,
  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
  .footer-brand img {
    width: 200px;
  }
}


/* About section realignment: centered overview with cards below */
#about .split-layout {
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}
#about .section-copy {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
#about .section-copy .eyebrow {
  justify-content: center;
}
#about .section-copy h2 {
  max-width: 980px;
  margin-inline: auto;
  text-wrap: balance;
}
#about .section-copy p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
#about .section-copy p + p {
  margin-top: 18px;
}
#about .cert-badges {
  justify-content: center;
  margin-top: 24px;
}
#about .values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  align-items: stretch;
}
#about .value-card,
#about .values-wide {
  grid-column: auto;
  min-height: 100%;
}
#about .value-card {
  min-height: 245px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 14px 34px rgba(9,43,75,.07);
}
#about .value-card p {
  line-height: 1.65;
}
@media (max-width: 1100px) {
  #about .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #about .values-wide {
    grid-column: 1 / -1;
  }
}
@media (max-width: 700px) {
  #about .section-copy h2 {
    max-width: 100%;
  }
  #about .values-grid {
    grid-template-columns: 1fr;
  }
  #about .value-card,
  #about .values-wide {
    grid-column: auto;
    min-height: auto;
  }
}


/* Footer final repair */
.site-footer {
  padding: 58px 0 26px;
  overflow: hidden;
}
.footer-cta {
  margin: 0 auto 30px;
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3.2vw, 44px);
  gap: 28px;
  border-radius: 34px;
  align-items: center;
}
.footer-cta > div {
  flex: 1 1 620px;
}
.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.14;
}
.footer-cta-button {
  flex: 0 0 auto;
  min-width: 290px;
  justify-content: center;
  white-space: nowrap;
}
.footer-grid {
  position: relative;
  z-index: 2;
  padding-top: 6px;
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) .85fr .85fr 1fr;
  gap: 34px 42px;
  align-items: start;
}
.footer-brand {
  padding-right: 10px;
}
.footer-brand img {
  width: min(100%, 330px);
  padding: 10px 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.98);
}
.footer-brand p {
  margin-top: 20px;
  max-width: 365px;
  font-size: 1rem;
  line-height: 1.7;
}
.footer-column,
.footer-contact {
  padding-top: 8px;
}
.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-column a,
.footer-column span,
.footer-contact-row {
  font-size: .95rem;
  line-height: 1.65;
}
.footer-column a + a,
.footer-contact a + a,
.footer-contact a + .footer-contact-row {
  margin-top: 8px;
}
.footer-contact-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 12px;
}
.footer-quick-actions {
  margin-top: 14px;
  gap: 10px;
}
.footer-quick-actions a {
  padding: 9px 15px;
  font-size: .82rem;
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p {
  max-width: 760px;
  margin: 0;
}
.back-to-top {
  right: 22px;
  bottom: 106px;
}
.whatsapp-float {
  right: 20px;
  bottom: 28px;
}
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: minmax(250px, 1.2fr) 1fr 1fr;
    gap: 30px 28px;
  }
  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 28px;
    align-items: start;
  }
  .footer-contact h3,
  .footer-quick-actions {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .footer-cta {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }
  .footer-cta-button {
    min-width: 0;
    width: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding-top: 48px;
    padding-bottom: 20px;
  }
  .footer-cta {
    padding: 22px 18px;
    border-radius: 24px;
  }
  .footer-cta h2 {
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }
  .footer-cta-button {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand,
  .footer-column,
  .footer-contact {
    grid-column: auto;
    padding-top: 0;
  }
  .footer-brand img {
    width: min(100%, 270px);
  }
  .footer-bottom {
    flex-direction: column;
  }
}


/* Speed optimisation */
#services, #solutions, #industries, #process, #certifications, #gallery, #contact {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.service-card { animation: none !important; }
.gallery-item img, .service-media img { backface-visibility: hidden; }
@media (max-width: 760px) {
  .hero-particles { display: none; }
  .logo-track { animation-duration: 44s !important; }
}

/* Fast-paint optimization: render the landing content immediately */
.hero .reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

/* Delay below-the-fold rendering until the browser approaches each section */
#about,
#services,
#solutions,
#industries,
#process,
#certifications,
#gallery,
#contact,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

@media (max-width: 768px) {
  .hero-particles { display: none !important; }
  .hero-image-frame img { animation: none !important; }
  .floating-card { animation: none !important; }
}
