:root {
  --navy: #081f49;
  --navy-2: #051426;
  --blue: #4fc3f7;
  --blue-2: #2c84d8;
  --mint: #d7f7ef;
  --ink: #0b1f4b;
  --muted: #5c6b82;
  --line: #dce8f3;
  --soft: #f5f9fc;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(8, 31, 73, 0.12);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-160%);
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 6vw, 100px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 232, 243, 0.8);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  display: block;
  width: 168px;
  max-width: 42vw;
  height: auto;
  object-fit: contain;
}

.brand-logo-header {
  width: 178px;
  max-width: min(46vw, 178px);
}

.brand-logo-reverse {
  width: 185px;
  max-width: 100%;
}

.brand-mark,
.hero-spark {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("assets/spark-klean-sparkle-transparent.png") center / contain no-repeat;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after,
.hero-spark::before,
.hero-spark::after {
  content: none;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-transform: none;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.text-link {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 4px;
}

.text-link:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #0c2a5c;
  box-shadow: 0 8px 24px rgba(8, 31, 73, 0.18);
}

.button-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: #9db4cc;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(8, 31, 73, 0.08);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.section {
  padding: 96px clamp(20px, 6vw, 100px);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding-top: 92px;
  max-width: 1440px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue-2);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-proof {
  margin-bottom: 28px;
  color: var(--navy);
  font-weight: 800;
}

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

.hero-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.12;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy);
  --spark-travel: min(210px, 32vw);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--navy);
  transform-origin: right center;
  animation: imageWipeMask 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  pointer-events: none;
  will-change: transform;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clean-reveal {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 3;
  width: 42%;
  background: linear-gradient(
    90deg,
    rgba(8, 31, 73, 0),
    rgba(79, 195, 247, 0.18) 48%,
    rgba(255, 255, 255, 0.3),
    rgba(79, 195, 247, 0)
  );
  opacity: 0;
  transform: translateX(-120%);
  animation: cleanReveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-spark {
  position: absolute;
  z-index: 4;
  width: 38px;
  height: 38px;
  opacity: 0;
  filter: drop-shadow(0 8px 18px rgba(8, 31, 73, 0.18));
  transform: scale(0);
  animation: sparklePop 0.35s ease-out 0.55s forwards;
}

.spark-one {
  top: 44%;
  left: 50%;
  width: 42px;
  height: 42px;
  animation: heroSparkLead 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.spark-two {
  right: 18px;
  bottom: 18px;
  width: 28px;
  height: 28px;
  animation-delay: 0.9s;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-item {
  min-height: 170px;
  padding: 34px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.proof-item.motion-ready {
  transform: translateY(16px);
}

.proof-item.motion-ready.is-visible {
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out;
}

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

.proof-item h2 {
  margin: 10px 0 6px;
  font-size: 0.98rem;
}

.proof-item p {
  margin: 0 auto;
  max-width: 260px;
  color: var(--muted);
  font-size: 0.88rem;
}

.icon,
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.icon {
  width: 28px;
  height: 28px;
  color: var(--blue-2);
}

.icon::before,
.icon-badge::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}

.icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--blue-2);
  background: #eaf8ff;
  position: relative;
}

.icon-badge::after {
  content: "✦";
  position: absolute;
  top: 12px;
  right: 13px;
  color: var(--blue);
  font-size: 0.72rem;
  opacity: 0;
  transform: scale(0);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.icon-shield { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 5 6v5c0 4.5 2.7 8.6 7 10 4.3-1.4 7-5.5 7-10V6l-7-3Zm3.5 7-4.4 4.4-2.1-2.1 1.2-1.2.9.9 3.2-3.2 1.2 1.2Z'/%3E%3C/svg%3E"); }
.icon-home { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m3 11 9-8 9 8-1.3 1.5L18 11v9h-5v-6h-2v6H6v-9l-1.7 1.5L3 11Z'/%3E%3C/svg%3E"); }
.icon-package { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7.5 12 3l8 4.5v9L12 21l-8-4.5v-9Zm2.1.3L12 11l5.9-3.2L12 4.7 6.1 7.8ZM6 9.5v5.9l5 2.8v-5.9L6 9.5Zm7 8.7 5-2.8V9.5l-5 2.8v5.9Z'/%3E%3C/svg%3E"); }
.icon-chat { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5.5A3.5 3.5 0 0 1 7.5 2h9A3.5 3.5 0 0 1 20 5.5v6A3.5 3.5 0 0 1 16.5 15H13l-5.8 4.2V15A3.3 3.3 0 0 1 4 11.7V5.5Z'/%3E%3C/svg%3E"); }
.icon-check { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9.2 16.6-4.3-4.3 1.5-1.5 2.8 2.8 8.4-8.4 1.5 1.5-9.9 9.9Z'/%3E%3C/svg%3E"); }
.icon-sparkle { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2c1.2 5 2.9 6.8 8 8-5.1 1.2-6.8 3-8 8-1.2-5-2.9-6.8-8-8 5.1-1.2 6.8-3 8-8Z'/%3E%3C/svg%3E"); }
.icon-checklist { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 4h14v16H5V4Zm3.2 4.8 1.2 1.2 2.4-2.4-1.1-1.1-1.3 1.3-.5-.5-.7 1.5Zm5.3-.8v2h3.8V8h-3.8Zm-5.3 6.8 1.2 1.2 2.4-2.4-1.1-1.1-1.3 1.3-.5-.5-.7 1.5Zm5.3-.8v2h3.8v-2h-3.8Z'/%3E%3C/svg%3E"); }
.icon-clock { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 10.4 3.6 2.1-1 1.7L11 13.5V6h2v6.4Z'/%3E%3C/svg%3E"); }
.icon-map { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.2 7 13 7 13s7-7.8 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E"); }
.icon-cleaning { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h5l1 4h2a2 2 0 0 1 2 2v2h1.5a1.5 1.5 0 0 1 0 3H17v7H7v-7H5.5a1.5 1.5 0 0 1 0-3H7V3Zm2 2v6h6V9h-3.5l-1-4H9Z'/%3E%3C/svg%3E"); }
.icon-users { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c4 0 7 2 7 4.5V20H2v-2.5C2 15 5 13 9 13Zm7-1a3.5 3.5 0 0 0 0-7v7Zm.7 1.1c3 .5 5.3 2.2 5.3 4.4V20h-4v-2.5c0-1.7-.8-3.2-2.1-4.4h.8Z'/%3E%3C/svg%3E"); }
.icon-briefcase { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 3h6v3h5v14H4V6h5V3Zm2 3h2V5h-2v1Zm-5 5v7h12v-7h-5v2h-2v-2H6Z'/%3E%3C/svg%3E"); }

.client-strip {
  overflow: hidden;
  padding: 34px clamp(20px, 6vw, 100px);
  background: #eaf8ff;
  border-top: 1px solid #d2edf9;
  border-bottom: 1px solid #d2edf9;
}

.ticker-label {
  margin: 0 auto 12px;
  max-width: var(--max);
  color: var(--blue-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.client-ticker {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: ticker 60s linear infinite;
}

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

.client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(8, 31, 73, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(8, 31, 73, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.split-section {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.section-copy p {
  max-width: 620px;
  color: var(--muted);
}

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

.metric-grid article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.metric-grid h3,
.quality-grid h3 {
  margin-top: 10px;
}

.metric-grid p,
.quality-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.section-heading {
  margin: 0 auto 50px;
  max-width: var(--max);
  text-align: center;
}

.section-heading-left {
  text-align: left;
}

.services {
  padding-top: 100px;
  padding-bottom: 110px;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(11, 31, 75, 0.14);
}

.service-card:hover .icon-badge::after,
.service-card:focus-within .icon-badge::after {
  opacity: 1;
  transform: scale(1);
}

.service-card h3 {
  margin-top: 24px;
  text-transform: uppercase;
}

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

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-card li + li {
  margin-top: 8px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.quality-section,
.process-section,
.booking-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quality-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 56px;
}

.quality-grid article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 16px;
  padding-left: 18px;
  border-left: 2px solid #b6cce2;
}

.quality-grid .icon {
  grid-row: span 2;
  margin-top: 2px;
}

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

.process-grid {
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.process-step {
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 74px;
  right: -18px;
  height: 1px;
  background: var(--line);
  transform-origin: left;
}

.process-step.motion-ready {
  opacity: 1;
  transform: none;
}

.process-step.motion-ready::after {
  transform: scaleX(0);
}

.process-step.motion-ready.is-visible::after {
  transform: scaleX(1);
  transition: transform 0.5s ease-out;
  transition-delay: calc(var(--motion-delay, 0ms) + 300ms);
}

.process-step span {
  display: block;
  margin-bottom: 18px;
  color: #cfdae7;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1;
}

.process-step.motion-ready span {
  opacity: 0;
  transform: scale(0.7);
  transform-origin: left center;
}

.process-step.motion-ready.is-visible span {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition-delay: var(--motion-delay, 0ms);
}

.process-step h3 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.process-step.motion-ready h3,
.process-step.motion-ready p {
  opacity: 0;
  transform: translateY(12px);
}

.process-step.motion-ready.is-visible h3,
.process-step.motion-ready.is-visible p {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.45s ease-out,
    transform 0.45s ease-out;
  transition-delay: calc(var(--motion-delay, 0ms) + 150ms);
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 620px);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  background: var(--soft);
}

.booking-copy h2 {
  max-width: 480px;
}

.booking-copy p {
  color: var(--muted);
}

.spark-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.spark-list li {
  position: relative;
  padding-left: 24px;
  color: var(--navy);
  font-weight: 800;
}

.spark-list li + li {
  margin-top: 8px;
}

.spark-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--blue);
}

.enquiry-form {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  justify-self: end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 7px;
  position: relative;
}

.enquiry-form span {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  transform-origin: left center;
  transition:
    color 0.15s ease-out,
    font-size 0.15s ease-out,
    transform 0.15s ease-out;
}

.enquiry-form label:focus-within span {
  color: var(--blue-2);
  font-size: 0.7rem;
  transform: translateY(-2px);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(79, 195, 247, 0.15);
}

.form-submit {
  width: 100%;
}

.form-submit.is-loading {
  animation: buttonLoading 1s ease-in-out infinite;
}

.form-submit.is-success {
  background: #25d366;
  border-color: #25d366;
}

.enquiry-form.is-invalid {
  animation: formShake 0.3s ease;
}

.whatsapp-button {
  position: relative;
  gap: 8px;
  border-color: var(--line);
  background: var(--white);
  color: var(--navy);
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-button:hover {
  animation-play-state: paused;
}

.whatsapp-button.is-email-fallback {
  animation: none;
}

.whatsapp-button span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-button.is-email-fallback span {
  background: var(--blue-2);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.staffing-cta {
  position: relative;
  overflow: hidden;
  padding-top: clamp(110px, 10vw, 150px);
  padding-bottom: clamp(110px, 10vw, 150px);
  text-align: center;
}

.staffing-cta h2,
.staffing-cta p {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.staffing-cta p {
  color: #b9c9dd;
}

.cta-spark-one {
  left: 5vw;
  top: 56px;
  width: 46px;
  height: 46px;
  opacity: 0.45;
  animation: none;
  transform: none;
}

.cta-spark-two {
  right: 7vw;
  bottom: 62px;
  width: 42px;
  height: 42px;
  opacity: 0.35;
  animation: none;
  transform: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(140px, 0.6fr) minmax(220px, 0.8fr);
  gap: 42px;
  padding: 64px clamp(20px, 6vw, 100px) 34px;
  background: var(--navy-2);
  color: #d4e4f5;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-logo {
  width: 178px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.footer-brand p {
  max-width: 360px;
  color: #98aac2;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.95rem;
}

.site-footer a {
  color: #c0d3e9;
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--blue);
}

.copyright {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #6f839b;
  font-size: 0.86rem;
}

.reveal-child,
.motion-ready {
  opacity: 0;
  transform: translateY(20px);
}

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

.hero .reveal-child {
  animation: fadeUp 0.5s ease-out both;
}

.hero .reveal-child:nth-child(1) { animation-delay: 0.1s; }
.hero .reveal-child:nth-child(2) { animation-delay: 0.2s; }
.hero .reveal-child:nth-child(3) { animation-delay: 0.34s; }
.hero .reveal-child:nth-child(4) { animation-delay: 0.42s; }
.hero .reveal-child:nth-child(5) { animation-delay: 0.5s; }

.motion-ready.is-visible {
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out;
}

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

.service-card.motion-ready.is-visible:hover,
.service-card.motion-ready.is-visible:focus-within {
  transform: translateY(-4px);
}

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

@keyframes cleanReveal {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(260%);
  }
}

@keyframes imageWipeMask {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

@keyframes heroSparkLead {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) translateX(calc(var(--spark-travel) * -1)) scale(0);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(calc(var(--spark-travel) * -0.45)) scale(1.2);
  }
  72% {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }
  100% {
    opacity: 0.85;
    transform: translate(-50%, -50%) translateX(0) scale(1);
  }
}

@keyframes sparklePop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  65% {
    opacity: 1;
    transform: scale(1.18);
  }
  100% {
    opacity: 0.85;
    transform: scale(1);
  }
}

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

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

@keyframes buttonLoading {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 1;
  }
}

@keyframes formShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .header-actions .text-link {
    display: none;
  }

  .hero,
  .split-section,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-media {
    order: -1;
    aspect-ratio: 1.18;
  }

  .proof-strip,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 20px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .site-header .brand-logo {
    width: 112px;
    max-width: 33vw;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-tag {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 0.74rem;
  }

  .section {
    padding: 72px 24px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .metric-grid article,
  .service-card,
  .enquiry-form {
    padding: 24px;
  }

  .client-ticker {
    mask-image: none;
  }

  .client-track {
    animation-duration: 44s;
  }

  .staffing-cta {
    padding-top: 88px;
    padding-bottom: 92px;
  }
}

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

  .reveal-child,
  .motion-ready {
    opacity: 1;
    transform: none;
  }

  .clean-reveal,
  .hero-media::before,
  .hero-spark {
    display: none;
  }

  .client-track {
    animation: none !important;
    transform: none !important;
  }

  .client-logo[aria-hidden="true"] {
    display: none;
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: none;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }

  .service-card:hover .icon-badge::after,
  .service-card:focus-within .icon-badge::after {
    display: none;
  }

  .enquiry-form label:focus-within span {
    color: var(--navy);
    font-size: 0.84rem;
    transform: none;
  }

  .process-step.motion-ready span,
  .process-step.motion-ready h3,
  .process-step.motion-ready p {
    opacity: 1;
    transform: none;
  }

  .process-step.motion-ready::after {
    transform: scaleX(1);
  }
}
