:root {
  --primary: #001D3A;
  --secondary: #8CC63F;
  --accent: #6FAF2A;
  --dark: #0B1F33;
  --light: #FFFFFF;
  --soft-bg: #F5F8F2;
  --muted: #6B7280;
  --navy: #001D3A;
  --navy-2: #0B2B4A;
  --ink: #0B1F33;
  --muted: #6B7280;
  --line: #dde5ec;
  --soft: #F5F8F2;
  --white: #ffffff;
  --green: #8CC63F;
  --green-dark: #6FAF2A;
  --shadow: 0 20px 50px rgba(12, 35, 52, 0.14);
  --radius: 8px;
  --header-h: 78px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(7, 29, 47, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 186px;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  color: #263745;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 26px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
}

.icon-link .icon {
  display: grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #12202c;
  background: var(--secondary);
  border-color: #B9DD8A;
  box-shadow: 0 12px 30px rgba(140, 198, 63, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #8CC63F;
  box-shadow: 0 16px 34px rgba(140, 198, 63, 0.42);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(7, 29, 47, 0.24);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: var(--white);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 2px;
}

.section {
  padding: 96px 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-dark .section-kicker,
.section-dark .eyebrow,
.hero .eyebrow {
  color: #b8ec82;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
  color: inherit;
}

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 850;
}

h2 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 820;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay,
.final-cta > img,
.final-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media,
.final-cta > img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 30, 0.88) 0%, rgba(4, 18, 30, 0.74) 44%, rgba(4, 18, 30, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 18, 30, 0.38), rgba(4, 18, 30, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 76px 0 92px;
  animation: fadeUp 0.8s ease both;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 750;
}

.intro-band {
  padding: 34px 0;
  background: var(--soft);
  border-bottom: 1px solid #e2eadc;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}

.intro-grid h2 {
  max-width: 540px;
  margin: 0;
  font-size: 30px;
}

.intro-grid p:last-child {
  margin: 0;
  color: #415464;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading-wide {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
}

.section-heading-wide > div {
  max-width: 780px;
}

.helper-copy {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.overview-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(8, 29, 47, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(134, 198, 61, 0.55);
  box-shadow: var(--shadow);
}

.overview-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.card-body p {
  color: var(--muted);
}

.card-body a {
  display: inline-flex;
  color: var(--navy);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

.about-section {
  background: #fbfcfa;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 60px;
  align-items: start;
}

.about-copy p {
  color: #405464;
}

.values-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.value-item {
  min-height: 138px;
  padding: 20px;
  border: 1px solid #dce7d5;
  border-radius: var(--radius);
  background: var(--white);
}

.value-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.value-item span {
  color: var(--muted);
  font-size: 14px;
}

.mission-band {
  padding: 48px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 29, 47, 0.98), rgba(12, 45, 69, 0.96)),
    var(--navy);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mission-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.mission-grid span {
  display: block;
  margin-bottom: 10px;
  color: #b8ec82;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 13px;
}

.mission-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.83);
}

.services-section {
  background: var(--white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fafc;
  width: fit-content;
  max-width: 100%;
}

.filter-button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #405464;
  background: transparent;
  font-size: 14px;
  font-weight: 800;
}

.filter-button.is-active {
  color: var(--white);
  background: var(--navy);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  min-height: 158px;
  padding: 18px;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(8, 29, 47, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(140, 198, 63, 0.85);
  box-shadow: 0 16px 30px rgba(8, 29, 47, 0.11);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #ecf7e3;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 17px;
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.vertical-section {
  background: #f7f9fb;
}

.vertical-section-alt {
  background: #f3f8ed;
}

.vertical-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 54px;
  align-items: center;
}

.vertical-grid.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.vertical-grid.reverse .vertical-media {
  order: 2;
}

.vertical-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vertical-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.vertical-media.collage {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 12px;
  background: transparent;
  box-shadow: none;
}

.vertical-media.collage img {
  height: 100%;
  min-height: 430px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vertical-media.collage img:nth-child(2) {
  margin-top: 34px;
}

.vertical-copy p {
  color: #435668;
}

.premium-note {
  display: grid;
  gap: 6px;
  margin: 26px 0;
  padding: 20px;
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 29, 47, 0.07);
}

.premium-note strong {
  color: var(--navy);
}

.premium-note span {
  color: #435668;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.tag-list span {
  padding: 8px 11px;
  border: 1px solid #dbe6eb;
  border-radius: 999px;
  color: #405464;
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 750;
}

.clean-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 750;
}

.disclaimer-line {
  padding: 16px;
  border-radius: var(--radius);
  color: #315514;
  background: #F2F9E8;
}

.showcase-strip {
  padding: 56px 0;
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
}

.showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase-grid p {
  color: #435668;
}

.process-section {
  background: #fbfcfa;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.process-grid > img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid #dce7d5;
  border-radius: var(--radius);
  background: var(--white);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: #e8f5da;
  border-radius: 999px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.industries-section {
  overflow: hidden;
  background: #f7f9fb;
}

.industry-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 16px 0;
  animation: marquee 36s linear infinite;
}

.industry-marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #dbe6eb;
  border-radius: 999px;
  color: var(--navy);
  background: #fbfcfa;
  font-weight: 800;
}

.testimonials-section {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.testimonial-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.testimonial-slider {
  position: relative;
  min-height: 260px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
  opacity: 0;
  transform: translateX(18px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.rating {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #315514;
  background: #EAF5DC;
  font-size: 13px;
  font-weight: 900;
}

.testimonial-card p {
  color: #354858;
  font-size: 19px;
}

.testimonial-card strong {
  color: var(--navy);
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.testimonial-controls button,
.modal-close,
#chatClose {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
}

.split-forms {
  background: #F5F8F2;
}

.form-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: start;
}

.form-intro p,
.contact-panel p {
  color: #435668;
}

.form-intro img {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 24px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid #dce7d5;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: #304252;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfdbe4;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(134, 198, 61, 0.18);
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.check-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #405464;
  background: #f8fafc;
}

.check-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.form-submit {
  width: fit-content;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 800;
}

.contact-section {
  background: var(--white);
}

.contact-panel {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfcfa;
}

.contact-list strong {
  color: var(--navy);
}

.contact-list span {
  color: #435668;
}

.final-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.final-overlay {
  background:
    linear-gradient(90deg, rgba(4, 18, 30, 0.9), rgba(4, 18, 30, 0.55)),
    rgba(4, 18, 30, 0.35);
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 0;
}

.final-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.site-footer {
  padding: 58px 0 26px;
  color: rgba(255, 255, 255, 0.82);
  background: #061825;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 0.7fr));
  gap: 38px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.site-footer a,
.footer-link {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.78);
  background: none;
  text-align: left;
  font-size: 14px;
}

.site-footer a:hover,
.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom > a {
  justify-self: end;
  margin-bottom: 0;
}

.design-credit {
  color: rgba(255, 255, 255, 0.72);
}

.design-credit strong {
  color: var(--secondary);
  font-weight: 700;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 34;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(7, 29, 47, 0.25);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: var(--white);
  background: var(--navy);
  font-size: 14px;
  font-weight: 850;
}

.mobile-cta a:nth-child(2) {
  color: #10210b;
  background: var(--green);
}

.chatbot {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
}

.chat-launcher {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 999px;
  color: #111d28;
  background: var(--secondary);
  box-shadow: 0 0 0 6px rgba(140, 198, 63, 0.22), 0 18px 34px rgba(7, 29, 47, 0.24);
  animation: chatBounce 4s ease 2s infinite;
}

.chat-launcher svg {
  width: 26px;
  height: 26px;
}

.chat-window {
  position: absolute;
  right: 0;
  bottom: 78px;
  width: 360px;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 47, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(7, 29, 47, 0.26);
  animation: slideUp 0.25s ease both;
}

.chat-window header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  color: var(--white);
  background: var(--navy);
}

.chat-window header strong,
.chat-window header span {
  display: block;
}

.chat-window header span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

#chatClose {
  width: 34px;
  height: 34px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.chat-body {
  display: grid;
  gap: 10px;
  max-height: 340px;
  min-height: 280px;
  padding: 16px;
  overflow: auto;
  background: #f7fafc;
}

.chat-message {
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  color: #2e4050;
  background: var(--white);
  box-shadow: 0 6px 14px rgba(8, 29, 47, 0.06);
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--navy-2);
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-options button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #d4e0e8;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.chat-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.chat-input input {
  min-height: 40px;
}

.chat-input button {
  min-height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #111d28;
  background: var(--secondary);
  font-weight: 850;
}

.chat-whatsapp {
  display: grid;
  place-items: center;
  min-height: 42px;
  color: #0d2614;
  background: #dff5cf;
  font-size: 13px;
  font-weight: 850;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 20px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 30, 0.68);
  backdrop-filter: blur(7px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.modal-panel > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal-content {
  padding: 34px;
}

.modal-content > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.modal-content p {
  color: #435668;
}

.modal-content ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
  padding-left: 20px;
  color: #435668;
}

.modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}

.legal-panel {
  width: min(720px, 100%);
  display: block;
}

.legal-panel .modal-content {
  padding-right: 54px;
}

.legal-panel p {
  margin-bottom: 12px;
}

.legal-panel ul {
  padding-left: 18px;
}

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes chatBounce {
  0%,
  78%,
  100% {
    transform: translateY(0);
  }
  84% {
    transform: translateY(-8px);
  }
  90% {
    transform: translateY(0);
  }
  95% {
    transform: translateY(-4px);
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Multi-page website system */

body {
  min-width: 320px;
  color: var(--dark);
  background: var(--light);
}

body.nav-open,
body.chat-open {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: 82px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid rgba(0, 29, 58, 0.08);
  box-shadow: 0 10px 34px rgba(0, 29, 58, 0.06);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  transition: height 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--light);
  background: rgba(0, 29, 58, 0.91);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 29, 58, 0.2);
}

.nav-shell {
  gap: 22px;
}

.brand {
  width: 174px;
}

.brand img {
  padding: 5px 8px;
  border: 1px solid rgba(0, 29, 58, 0.06);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
}

.site-nav {
  gap: 21px;
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.site-nav > a,
.dropdown-toggle {
  position: relative;
  min-height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: none;
}

.site-nav > a {
  display: inline-flex;
  align-items: center;
}

.site-nav > a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.nav-dropdown:hover .dropdown-toggle::after,
.dropdown-toggle.is-active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: inherit;
  font-weight: inherit;
}

.dropdown-toggle i {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 4;
  display: grid;
  width: 254px;
  padding: 10px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(0, 29, 58, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 54px rgba(0, 29, 58, 0.18);
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--primary);
  border-radius: 6px;
  font-size: 13px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--soft-bg);
  color: var(--accent);
}

.site-header.is-scrolled .icon-link {
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  min-height: 44px;
  padding-inline: 18px;
}

.btn-primary {
  color: var(--primary);
  border-color: var(--secondary);
  background: var(--secondary);
  box-shadow: 0 10px 28px rgba(140, 198, 63, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  color: var(--primary);
  border-color: #9fd650;
  background: #9fd650;
  box-shadow: 0 14px 34px rgba(140, 198, 63, 0.34);
}

.btn-navy {
  color: var(--light);
  border-color: var(--primary);
  background: var(--primary);
}

.btn-navy:hover,
.btn-navy:focus-visible {
  color: var(--light);
  background: #0b3154;
  transform: translateY(-2px);
}

.btn-light-outline {
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 29, 58, 0.3);
}

.btn-light-outline:hover,
.btn-light-outline:focus-visible {
  color: var(--primary);
  border-color: var(--light);
  background: var(--light);
}

.home-hero {
  min-height: min(660px, 80svh);
  padding-top: 82px;
}

.home-hero .hero-content {
  padding: 68px 0 70px;
}

.home-hero h1 {
  max-width: 800px;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #c9f298;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 19, 38, 0.92) 0%, rgba(0, 29, 58, 0.77) 48%, rgba(0, 29, 58, 0.2) 100%),
    linear-gradient(0deg, rgba(0, 29, 58, 0.4), rgba(0, 29, 58, 0.08));
}

.hero-actions .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--light);
  font-weight: 700;
}

.hero-actions .text-link:hover {
  color: #c9f298;
}

.counter-band {
  position: relative;
  z-index: 2;
  padding: 24px 0;
  border-bottom: 1px solid #e1e8dc;
  background: var(--light);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.counter-item {
  min-width: 0;
  padding: 4px 28px;
  border-right: 1px solid #dde6d8;
}

.counter-item:first-child {
  padding-left: 0;
}

.counter-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.counter-value {
  display: block;
  color: var(--primary);
  font-size: 29px;
  font-weight: 800;
  line-height: 1.1;
}

.counter-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.section-compact {
  padding: 74px 0;
}

.section-soft {
  background: var(--soft-bg);
}

.section-navy {
  color: var(--light);
  background: var(--primary);
}

.section-navy h2,
.section-navy h3,
.section-navy strong {
  color: var(--light);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading.centered {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.vertical-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vertical-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
  box-shadow: 0 12px 34px rgba(0, 29, 58, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.vertical-card:hover {
  border-color: rgba(140, 198, 63, 0.7);
  box-shadow: 0 20px 46px rgba(0, 29, 58, 0.14), 0 0 0 2px rgba(140, 198, 63, 0.12);
  transform: translateY(-6px);
}

.vertical-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vertical-card-body {
  padding: 24px;
}

.vertical-card-icon,
.service-link-icon,
.benefit-icon,
.value-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: var(--primary);
  border-radius: 6px;
  background: #eaf6db;
}

.vertical-card-icon i,
.service-link-icon i,
.benefit-icon i,
.value-icon i {
  width: 21px;
  height: 21px;
}

.vertical-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 21px;
}

.vertical-card p {
  min-height: 76px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.arrow-link i {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.arrow-link:hover {
  color: var(--accent);
}

.arrow-link:hover i {
  transform: translateX(4px);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.split-layout.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 29, 58, 0.15);
}

.media-stat {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: 170px;
  padding: 18px;
  color: var(--primary);
  border: 1px solid rgba(140, 198, 63, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(0, 29, 58, 0.14);
  backdrop-filter: blur(12px);
}

.media-stat strong {
  display: block;
  font-size: 28px;
}

.media-stat span {
  color: var(--muted);
  font-size: 12px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: #354858;
  font-size: 14px;
}

.check-list i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--accent);
}

.process-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 50px;
}

.process-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 8px;
}

.process-list {
  display: grid;
  align-content: center;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step:last-child {
  border-bottom: 0;
}

.process-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--primary);
  border-radius: 50%;
  background: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.process-step p {
  margin: 0;
  font-size: 13px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-item {
  padding: 24px 20px;
  border-top: 2px solid var(--secondary);
  background: rgba(255, 255, 255, 0.06);
}

.benefit-item h3 {
  margin: 0 0 7px;
  font-size: 15px;
}

.benefit-item p {
  margin: 0;
  font-size: 12px;
}

.logo-marquee {
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid #e1e8dc;
  border-bottom: 1px solid #e1e8dc;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 34s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 86px;
  padding: 16px;
  color: #87929b;
  border: 1px solid #dfe7db;
  border-radius: 8px;
  background: var(--light);
  filter: grayscale(1);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: color 0.2s ease, border-color 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-card:hover {
  color: var(--primary);
  border-color: var(--secondary);
  filter: grayscale(0);
  transform: translateY(-3px);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.testimonial-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.testimonial-stage {
  position: relative;
  min-height: 316px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 34px;
  visibility: hidden;
  opacity: 0;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.testimonial-card.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card .quote-mark {
  color: var(--secondary);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.7;
}

.testimonial-card blockquote {
  margin: 22px 0;
  color: var(--primary);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.45;
}

.testimonial-card cite {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
}

.slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: #d8dfd4;
}

.slider-dot.is-active {
  background: var(--secondary);
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--light);
  background:
    linear-gradient(90deg, rgba(0, 29, 58, 0.96), rgba(0, 29, 58, 0.77)),
    url("../assets/images/career-contact-chatbot.webp") center / cover;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-copy {
  max-width: 700px;
}

.cta-copy h2 {
  margin: 0 0 10px;
  color: var(--light);
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 470px;
  padding: 148px 0 76px;
  overflow: hidden;
  color: var(--light);
  background: var(--primary);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 20, 40, 0.94), rgba(0, 29, 58, 0.62) 58%, rgba(0, 29, 58, 0.22));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #c9f298;
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--light);
  font-size: 48px;
  line-height: 1.12;
}

.page-hero p {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.page-intro {
  max-width: 820px;
}

.page-intro h2 {
  margin-top: 0;
}

.service-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 30px;
}

.service-filter {
  min-height: 40px;
  padding: 0 17px;
  color: var(--primary);
  border: 1px solid #d9e4d5;
  border-radius: 999px;
  background: var(--light);
  font-size: 12px;
  font-weight: 800;
}

.service-filter:hover,
.service-filter.is-active {
  color: var(--primary);
  border-color: var(--secondary);
  background: var(--secondary);
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.service-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-link-card {
  display: flex;
  flex-direction: column;
  min-height: 196px;
  padding: 20px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
  box-shadow: 0 7px 22px rgba(0, 29, 58, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-link-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 16px 34px rgba(0, 29, 58, 0.11);
  transform: translateY(-4px);
}

.service-link-card[hidden] {
  display: none;
}

.service-link-card h2,
.service-link-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 15px;
  line-height: 1.35;
}

.service-link-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.service-link-card .mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.category-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 8px;
  color: #315514;
  border-radius: 4px;
  background: #eaf6db;
  font-size: 10px;
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

.content-prose h2 {
  margin-top: 42px;
  color: var(--primary);
}

.content-prose h2:first-child {
  margin-top: 0;
}

.content-prose h3 {
  color: var(--primary);
}

.content-prose p,
.content-prose li {
  color: #435668;
}

.content-prose img {
  width: 100%;
  margin: 28px 0;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
}

.content-sidebar {
  position: sticky;
  top: 98px;
}

.enquiry-panel {
  padding: 26px;
  color: var(--light);
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 20px 50px rgba(0, 29, 58, 0.16);
}

.enquiry-panel h2,
.enquiry-panel h3 {
  margin: 0 0 8px;
  color: var(--light);
  font-size: 20px;
}

.enquiry-panel > p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.related-panel {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--soft-bg);
}

.related-panel h3 {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 16px;
}

.related-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  color: #405464;
  border-bottom: 1px solid #dce6d7;
  font-size: 13px;
  font-weight: 700;
}

.related-panel a:last-child {
  border-bottom: 0;
}

.related-panel a:hover {
  color: var(--accent);
}

.form-stack,
.form-grid-modern {
  display: grid;
  gap: 14px;
}

.form-grid-modern {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-full {
  grid-column: 1 / -1;
}

.field-group {
  display: grid;
  gap: 6px;
}

.field-group label,
.choice-label {
  color: #314657;
  font-size: 12px;
  font-weight: 700;
}

.enquiry-panel .field-group label {
  color: rgba(255, 255, 255, 0.82);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--dark);
  border: 1px solid #cfdbe4;
  border-radius: 6px;
  outline: none;
  background: var(--light);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field-group textarea {
  min-height: 112px;
  resize: vertical;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(140, 198, 63, 0.18);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #405464;
  font-size: 13px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.enquiry-panel .form-status {
  color: #c9f298;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
}

.faq-item summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  color: var(--primary);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--accent);
  font-size: 22px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 13px;
}

.vision-grid,
.value-grid,
.industry-grid {
  display: grid;
  gap: 18px;
}

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

.value-grid {
  grid-template-columns: repeat(4, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
}

.info-tile,
.value-tile,
.industry-tile {
  padding: 24px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
}

.info-tile h2,
.info-tile h3,
.value-tile h3,
.industry-tile h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.info-tile h2,
.info-tile h3 {
  font-size: 20px;
}

.value-tile h3,
.industry-tile h3 {
  font-size: 15px;
}

.info-tile p,
.value-tile p,
.industry-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  gap: 60px;
  align-items: start;
}

.article-content {
  color: #435668;
}

.article-content .article-lead {
  color: var(--primary);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
}

.article-content h2 {
  margin: 38px 0 12px;
  color: var(--primary);
  font-size: 27px;
}

.article-content p,
.article-content li {
  line-height: 1.78;
}

.article-content img {
  width: 100%;
  margin: 28px 0;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  border-radius: 8px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  margin: 34px 0 10px;
  color: var(--primary);
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: #435668;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
}

.contact-item i {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--accent);
}

.contact-item strong {
  display: block;
  color: var(--primary);
  font-size: 12px;
}

.contact-item span {
  color: var(--muted);
  font-size: 13px;
}

.form-surface {
  padding: 30px;
  border: 1px solid #dfe8db;
  border-radius: 8px;
  background: var(--light);
  box-shadow: 0 18px 44px rgba(0, 29, 58, 0.08);
}

.form-surface h2 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 24px;
}

.form-surface > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.map-panel {
  display: grid;
  place-items: center;
  min-height: 300px;
  margin-top: 18px;
  padding: 28px;
  color: var(--light);
  border-radius: 8px;
  background:
    linear-gradient(rgba(0, 29, 58, 0.84), rgba(0, 29, 58, 0.84)),
    url("../assets/images/hero-integrated-services.webp") center / cover;
  text-align: center;
}

.map-panel i {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.map-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.map-panel p {
  max-width: 430px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.site-footer {
  padding: 62px 0 26px;
  background: var(--primary);
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  grid-template-columns: 1.3fr 0.7fr 0.85fr 1.15fr;
}

.footer-logo {
  width: 188px;
  padding: 7px 9px;
}

.footer-about {
  max-width: 320px;
  font-size: 13px;
}

.footer-contact-line {
  display: flex;
  gap: 9px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.footer-contact-line i {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--secondary);
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.footer-social a:hover {
  color: var(--primary);
  background: var(--secondary);
}

.footer-social i {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  grid-template-columns: 1fr auto 1fr;
}

.footer-bottom .design-credit strong {
  color: var(--secondary);
}

.mobile-cta a:nth-child(2) {
  color: var(--primary);
  background: var(--secondary);
}

.chat-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  color: var(--primary);
  border: 1px solid rgba(0, 29, 58, 0.12);
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.45), 0 16px 36px rgba(0, 29, 58, 0.22);
  animation: chatPulse 2.4s ease-out infinite;
}

.chat-launcher i {
  width: 23px;
  height: 23px;
}

.chat-window {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 46;
  display: grid;
  width: min(382px, calc(100vw - 32px));
  max-height: min(650px, calc(100svh - 120px));
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(0, 29, 58, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 28px 76px rgba(0, 29, 58, 0.28);
  transform: translateY(16px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  backdrop-filter: blur(18px);
}

.chat-window.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px 16px;
  color: var(--light);
  background: var(--primary);
}

.chat-header-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.chat-header-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--primary);
  border-radius: 50%;
  background: var(--secondary);
}

.chat-header-icon i {
  width: 19px;
  height: 19px;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.chat-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.chat-close i {
  width: 18px;
  height: 18px;
}

.chat-progress {
  height: 3px;
  background: #dde6d7;
}

.chat-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--secondary);
  transition: width 0.25s ease;
}

.chat-body {
  display: grid;
  gap: 12px;
  min-height: 300px;
  padding: 16px;
  overflow-y: auto;
  background: #f7faf5;
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  color: #2e4050;
  border: 1px solid #e4eadf;
  border-radius: 8px 8px 8px 2px;
  background: var(--light);
  box-shadow: 0 6px 18px rgba(0, 29, 58, 0.06);
  font-size: 13px;
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  min-height: 38px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #87929b;
  animation: typingDot 1s infinite alternate;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chat-option {
  min-height: 36px;
  padding: 7px 10px;
  color: var(--primary);
  border: 1px solid #ccd8c7;
  border-radius: 999px;
  background: var(--light);
  font-size: 11px;
  font-weight: 800;
}

.chat-option:hover {
  border-color: var(--secondary);
  background: #eaf6db;
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.chat-input-row input {
  min-width: 0;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cfdbe4;
  border-radius: 6px;
  outline: none;
}

.chat-input-row input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(140, 198, 63, 0.17);
}

.chat-next {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  color: var(--primary);
  border: 0;
  border-radius: 6px;
  background: var(--secondary);
}

.chat-next i {
  width: 18px;
  height: 18px;
}

.chat-footer {
  padding: 11px 16px;
  color: #4d5f6d;
  border-top: 1px solid #dde6d8;
  background: var(--light);
  font-size: 10px;
  text-align: center;
}

.chat-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  color: var(--primary);
  border-radius: 6px;
  background: var(--secondary);
  font-size: 12px;
  font-weight: 800;
}

.chat-whatsapp i {
  width: 17px;
  height: 17px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes chatPulse {
  0% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0.42), 0 16px 36px rgba(0, 29, 58, 0.22); }
  70% { box-shadow: 0 0 0 14px rgba(140, 198, 63, 0), 0 16px 36px rgba(0, 29, 58, 0.22); }
  100% { box-shadow: 0 0 0 0 rgba(140, 198, 63, 0), 0 16px 36px rgba(0, 29, 58, 0.22); }
}

@keyframes typingDot {
  from { opacity: 0.35; transform: translateY(1px); }
  to { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
  }

  .nav-cta {
    display: none;
  }

  .service-link-grid,
  .benefit-grid,
  .value-grid,
  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 156px;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    display: block;
    width: min(360px, 92vw);
    padding: 24px;
    overflow-y: auto;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -20px 0 50px rgba(0, 29, 58, 0.18);
    transform: translateX(104%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav > a,
  .dropdown-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    border-bottom: 1px solid #e4eadf;
  }

  .site-nav > a::after,
  .dropdown-toggle::after {
    bottom: 0;
  }

  .nav-dropdown {
    display: block;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    padding: 8px 0 10px 12px;
    visibility: visible;
    opacity: 1;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown.is-open .dropdown-menu {
    display: grid;
    transform: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.is-scrolled .menu-button {
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .home-hero {
    padding-top: 72px;
  }

  .counter-grid,
  .vertical-card-grid,
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item:nth-child(2) {
    border-right: 0;
  }

  .counter-item:nth-child(n+3) {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #dde6d8;
  }

  .counter-item:nth-child(3) {
    padding-left: 0;
  }

  .split-layout,
  .process-split,
  .testimonial-shell,
  .content-grid,
  .article-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-media {
    order: 0;
  }

  .process-image img {
    min-height: 420px;
  }

  .benefit-grid,
  .service-link-grid,
  .service-grid-3,
  .service-grid-2,
  .value-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-actions .icon-link {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  .nav-actions .icon-link span:last-child {
    display: none;
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero .hero-content {
    padding: 58px 0 62px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-copy,
  .page-hero p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .counter-item {
    padding-right: 14px;
  }

  .counter-value {
    font-size: 24px;
  }

  .section,
  .section-compact {
    padding: 58px 0;
  }

  .vertical-card-grid,
  .vision-grid,
  .benefit-grid,
  .service-link-grid,
  .service-grid-3,
  .service-grid-2,
  .value-grid,
  .industry-grid,
  .form-grid-modern,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vertical-card {
    min-height: 0;
  }

  .vertical-card p {
    min-height: 0;
  }

  .split-layout {
    gap: 34px;
  }

  .media-stat {
    right: 12px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-split {
    gap: 32px;
  }

  .process-image img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .testimonial-stage {
    min-height: 390px;
  }

  .testimonial-card {
    padding: 26px;
  }

  .testimonial-card blockquote {
    font-size: 19px;
  }

  .cta-inner,
  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    min-height: 420px;
    padding: 126px 0 58px;
  }

  .service-filter-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .service-filter {
    padding-inline: 10px;
  }

  .form-surface,
  .enquiry-panel {
    padding: 22px;
  }

  .article-layout {
    gap: 34px;
  }

  .article-content .article-lead {
    font-size: 18px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > a {
    justify-self: center;
  }

  .chat-launcher {
    right: 16px;
    bottom: 88px;
  }

  .chat-window {
    right: 12px;
    bottom: 154px;
    left: 12px;
    width: auto;
    max-height: calc(100svh - 176px);
    transform-origin: bottom center;
  }
}

@media (max-width: 390px) {
  .brand {
    width: 142px;
  }

  .nav-actions {
    gap: 7px;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .counter-item,
  .counter-item:first-child,
  .counter-item:nth-child(3) {
    margin: 0;
    padding: 15px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #dde6d8;
  }

  .counter-item:last-child {
    border-bottom: 0;
  }

  .service-filter-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--header-h) + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-cta {
    display: none;
  }
}

@media (min-width: 981px) and (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
    justify-content: initial;
    gap: 16px;
  }

  .brand {
    width: 150px;
  }

  .site-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    visibility: visible;
    opacity: 1;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    pointer-events: auto;
  }

  .site-nav > a,
  .dropdown-toggle {
    width: auto;
    min-height: 0;
    padding: 25px 0;
    border: 0;
    font-size: 12px;
  }

  .menu-button,
  .mobile-nav-call,
  .nav-cta {
    display: none !important;
  }

  .nav-actions .icon-link {
    min-width: 104px;
    min-height: 42px;
    padding: 0 13px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 74px 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .intro-grid,
  .about-grid,
  .vertical-grid,
  .vertical-grid.reverse,
  .showcase-grid,
  .process-grid,
  .testimonials-grid,
  .form-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vertical-grid.reverse .vertical-media {
    order: 0;
  }

  .overview-grid,
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-wide {
    align-items: start;
    flex-direction: column;
  }

  .contact-panel {
    position: static;
  }

  .modal-panel {
    grid-template-columns: 1fr;
  }

  .modal-panel > img {
    min-height: 260px;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 68px;
  }

  body {
    padding-bottom: 74px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    width: 154px;
  }

  .icon-link span:last-child {
    display: none;
  }

  .icon-link {
    width: 42px;
    padding: 0;
    justify-content: center;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 64px 0 74px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .values-panel,
  .clean-list,
  .two-col,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    width: 100%;
    border-radius: 8px;
  }

  .filter-button {
    flex: 1 1 100%;
    border-radius: 6px;
  }

  .vertical-media.collage {
    grid-template-columns: 1fr;
  }

  .vertical-media.collage img,
  .vertical-media.collage img:nth-child(2) {
    min-height: 0;
    margin-top: 0;
    aspect-ratio: 16 / 10;
  }

  .process-list article {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .process-list span {
    width: 40px;
    height: 40px;
  }

  .form-card {
    padding: 20px;
  }

  .testimonial-slider {
    min-height: 330px;
  }

  .chatbot {
    right: 14px;
    bottom: 82px;
  }

  .chat-window {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 154px;
    width: auto;
  }

  .mobile-cta {
    display: grid;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > a {
    justify-self: center;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
  }

  .nav-actions {
    gap: 8px;
  }

  .chat-launcher {
    width: 56px;
    height: 56px;
  }
}


/* cPanel production fixes */
.site-header,
.site-header.is-scrolled {
  position: sticky;
  inset: auto;
  top: 0;
  height: 78px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 29, 58, 0.08);
  box-shadow: 0 12px 34px rgba(0, 29, 58, 0.08);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
}

.brand img,
.footer-logo {
  display: block;
  width: auto;
  height: 52px;
  max-width: 192px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
}

.footer-logo {
  height: 46px;
  max-width: 180px;
  filter: none;
}

.site-nav > a,
.dropdown-toggle {
  min-height: 38px;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;
  line-height: 1;
  text-decoration: none;
}

.site-nav > a::after,
.dropdown-toggle::after {
  content: "→" !important;
  position: static !important;
  inset: auto !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin-left: 3px;
  color: var(--secondary);
  border: 0 !important;
  background: transparent !important;
  opacity: 0;
  transform: translateX(-3px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.site-nav > a.is-active,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.dropdown-toggle.is-active {
  color: var(--accent);
  background: rgba(140, 198, 63, 0.12);
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle:focus-visible::after,
.dropdown-toggle.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.dropdown-menu a {
  position: relative;
  text-decoration: none;
}

.dropdown-menu a::after {
  content: "→";
  margin-left: auto;
  color: var(--secondary);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a:hover::after,
.dropdown-menu a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.btn,
.btn-small,
.chat-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  text-align: center;
  white-space: normal;
  vertical-align: middle;
}

.btn i,
.btn svg,
.chat-whatsapp i,
.chat-whatsapp svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0 !important;
  position: static !important;
  transform: none !important;
}

.btn-whatsapp,
.btn[href*="wa.me"],
.chat-whatsapp {
  min-height: 50px;
  padding-right: 24px;
  padding-left: 24px;
  color: #001D3A !important;
  border: 0 !important;
  border-radius: 999px;
  background: #25D366 !important;
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover,
.btn[href*="wa.me"]:hover,
.chat-whatsapp:hover {
  color: #001D3A !important;
  background: #1fb95a !important;
  transform: translateY(-2px);
}

.mobile-cta a:nth-child(2) {
  color: #001D3A;
  background: #25D366;
}

.icon-link,
.site-header.is-scrolled .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--primary) !important;
  line-height: 1;
}

.icon-link svg,
.icon-link i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0 !important;
  position: static !important;
  transform: none !important;
}

.service-link-card {
  display: grid;
  align-content: start;
  color: inherit;
  text-decoration: none;
}

.service-title-link {
  color: inherit;
  text-decoration: none;
}

.service-title-link:hover,
.read-more-link:hover {
  color: var(--accent);
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.btn-small {
  min-height: 38px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 11px;
}

.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.footer-contact-line a {
  color: inherit;
  text-decoration: none;
}

.footer-contact-line a:hover {
  color: var(--secondary);
}

.site-footer .btn-whatsapp {
  width: fit-content;
  max-width: 100%;
}

.design-credit a {
  color: var(--secondary);
  font-weight: 800;
  text-decoration: none;
}

.design-credit a:hover {
  color: #ffffff;
}

/* Keep the footer designer credit readable as one compact inline link. */
.site-footer .design-credit,
.footer-bottom .design-credit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  white-space: nowrap !important;
  line-height: 1.25 !important;
}

.site-footer .design-credit a,
.footer-bottom .design-credit a {
  display: inline-flex !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--secondary) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
}

.site-footer .design-credit a:hover,
.footer-bottom .design-credit a:hover {
  color: #ffffff !important;
}

.client-logo-section {
  overflow: hidden;
}

.client-logo-marquee {
  width: 100%;
  margin-top: 6px;
  overflow: hidden;
  border-block: 1px solid rgba(0, 29, 58, 0.08);
  background: linear-gradient(90deg, rgba(245, 248, 242, 0.72), #ffffff 16%, #ffffff 84%, rgba(245, 248, 242, 0.72));
}

.client-logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 18px;
  padding: 18px 0;
  animation: clientLogoFlow 20s linear infinite;
  will-change: transform;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-card {
  display: grid;
  place-items: center;
  width: clamp(150px, 17vw, 220px);
  height: 86px;
  padding: 12px 18px;
  border: 1px solid rgba(0, 29, 58, 0.09);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 29, 58, 0.06);
}

.client-logo-card img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(0.15);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

@keyframes clientLogoFlow {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.contact-item {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .site-nav > a::after,
  .dropdown-toggle::after {
    position: static !important;
    inset: auto !important;
    bottom: auto !important;
    height: auto !important;
    background: transparent !important;
  }

  .dropdown-menu a::after {
    margin-left: auto;
  }
}

/* Final visibility and navigation correction */
.site-nav a,
.site-nav button,
.dropdown-menu a {
  text-decoration: none !important;
}

.site-nav a::before,
.site-nav a::after,
.site-nav button::before,
.site-nav button::after,
.dropdown-menu a::before,
.dropdown-menu a::after {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-nav > a::after,
.dropdown-toggle::after,
.dropdown-menu a::after {
  content: "→" !important;
  position: static !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  margin-left: 6px !important;
  color: var(--secondary) !important;
  line-height: 1 !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.site-nav > a.is-active::after,
.dropdown-toggle:hover::after,
.dropdown-toggle:focus-visible::after,
.dropdown-toggle.is-active::after,
.dropdown-menu a:hover::after,
.dropdown-menu a:focus-visible::after {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.nav-actions .icon-link,
.site-header.is-scrolled .nav-actions .icon-link {
  min-width: 112px;
  min-height: 46px;
  color: #ffffff !important;
  border: 1px solid rgba(0, 29, 58, 0.12) !important;
  border-radius: 999px !important;
  background: var(--primary) !important;
  box-shadow: 0 10px 22px rgba(0, 29, 58, 0.16) !important;
}

.nav-actions .icon-link:hover,
.nav-actions .icon-link:focus-visible {
  color: var(--primary) !important;
  border-color: var(--secondary) !important;
  background: var(--secondary) !important;
  transform: translateY(-1px);
}

.nav-actions .icon-link span {
  display: inline-flex !important;
  align-items: center !important;
  color: inherit !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.btn-whatsapp,
.btn[href*="wa.me"],
.chat-whatsapp {
  min-width: 224px;
  max-width: 100%;
  min-height: 54px;
  padding: 0 22px !important;
  overflow: hidden;
  font-size: 15px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.btn-whatsapp span,
.btn[href*="wa.me"] span,
.chat-whatsapp span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  color: inherit !important;
  line-height: 1.1 !important;
  text-align: center;
  text-overflow: ellipsis;
}

.site-footer .btn-whatsapp {
  width: min(100%, 286px);
  font-size: 15px !important;
}

@media (max-width: 1100px) {
  .site-nav a::before,
  .site-nav a::after,
  .site-nav button::before,
  .site-nav button::after,
  .dropdown-menu a::before,
  .dropdown-menu a::after {
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
  }

  .dropdown-menu a {
    display: flex !important;
    align-items: center !important;
  }
}

@media (max-width: 560px) {
  .nav-actions .icon-link {
    min-width: 46px;
    padding: 0 12px;
  }

  .btn-whatsapp,
  .btn[href*="wa.me"],
  .chat-whatsapp {
    min-width: 0;
    width: 100%;
    white-space: normal !important;
  }
}

/* Final responsive and service-directory quality pass */
html,
body {
  max-width: 100%;
}

main,
section,
.container,
.nav-shell,
.article-layout,
.content-grid,
.split-layout,
.process-split,
.contact-layout,
.footer-grid {
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
button,
span {
  overflow-wrap: anywhere;
}

.mobile-nav-call {
  display: none;
}

.service-link-grid:not(.service-grid-2):not(.service-grid-3) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.service-link-card {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  min-height: 278px;
  height: 100%;
  padding: 22px;
}

.service-link-card h2,
.service-link-card h3 {
  min-height: 44px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.4;
}

.service-link-card p {
  flex: 1 1 auto;
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.65;
}

.service-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  width: 100%;
  margin-top: auto;
}

.service-card-actions .btn-whatsapp {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 9px 12px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  white-space: normal !important;
}

.service-card-actions .btn-whatsapp span {
  overflow: visible;
  white-space: normal;
  text-overflow: clip;
}

.read-more-link {
  width: 100%;
  min-height: 34px;
  justify-content: center;
  padding: 5px 0;
}

.site-footer .btn-whatsapp {
  display: none !important;
}

@media (min-width: 1440px) {
  .container {
    width: min(1240px, calc(100% - 64px));
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed !important;
    top: 72px !important;
    right: 18px !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    width: min(390px, calc(100vw - 36px)) !important;
    max-height: calc(100svh - 92px);
    padding: 14px !important;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0 !important;
    visibility: hidden;
    opacity: 0;
    border: 1px solid rgba(0, 29, 58, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 24px 60px rgba(0, 29, 58, 0.2) !important;
    transform: translateY(-10px) !important;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) !important;
    pointer-events: auto;
  }

  .site-nav > a,
  .dropdown-toggle {
    min-height: 48px;
    padding: 12px !important;
    justify-content: space-between;
    border-bottom: 1px solid #e6ece2;
  }

  .site-nav > a::after,
  .dropdown-toggle::after,
  .dropdown-menu a::after {
    display: inline-flex !important;
  }

  .mobile-nav-call {
    display: inline-flex !important;
    align-items: center;
    justify-content: center !important;
    gap: 8px;
    min-height: 48px;
    margin-top: 12px;
    padding: 0 14px !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--primary);
    font-weight: 800;
  }

  .mobile-nav-call::after {
    display: none !important;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .service-link-grid:not(.service-grid-2):not(.service-grid-3),
  .service-grid-3,
  .service-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-image img,
  .split-media img,
  .showcase-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: cover;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
  }

  .site-nav {
    top: 68px !important;
    right: 14px !important;
    width: calc(100vw - 28px) !important;
    max-height: calc(100svh - 84px);
  }

  .brand {
    width: clamp(132px, 40vw, 154px);
  }

  .nav-actions .icon-link {
    min-width: 42px;
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .service-link-grid:not(.service-grid-2):not(.service-grid-3),
  .service-grid-3,
  .service-grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-link-card {
    min-height: 0;
    padding: 19px;
  }

  .service-link-card h2,
  .service-link-card h3 {
    min-height: 0;
  }

  .service-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .service-filter {
    width: 100%;
    min-height: 44px;
  }

  .cta-actions .btn,
  .center-actions .btn,
  .form-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .page-hero {
    min-height: 390px;
    padding: 112px 0 48px;
  }

  .page-hero h1,
  .home-hero h1,
  h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.16;
  }

  h2 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.24;
  }

  .footer-contact-line {
    grid-template-columns: 20px minmax(0, 1fr);
  }
}

@media (max-width: 390px) {
  .service-filter-bar {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    gap: 6px;
  }

  .menu-button,
  .nav-actions .icon-link {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
