/* ==========================================================================
   SAMEXA GROUP LTD — Design System
   Premium UK Facilities & Commercial Cleaning corporate site
   ========================================================================== */

:root {
  /* Brand palette (from logo) */
  --navy: #022A5B;
  --navy-2: #022A5B;
  --navy-deep: #022A5B;
  /* --sky: #9fc7d8;
  --sky-light: #cfe4ec; */
  --sky: #f6ba1c;
--sky-light: #f9d878;
  --white: #ffffff;
  --section-bg: #f6f9fb;
  --section-bg-2: #eef4f7;
  --text: #10202f;
  --text-soft: #4d6072;
  --text-faint: #8195a4;
  --border: #e2e9ee;
  /* --accent: #0ea5a4;
  --accent-dark: #0b8483; */
--accent: #f5ba1e;
--accent-dark: #c99000;
  --success: #1a9c6b;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(7, 43, 69, 0.06), 0 1px 3px rgba(7, 43, 69, 0.08);
  --shadow-md: 0 8px 24px -8px rgba(7, 43, 69, 0.16);
  --shadow-lg: 0 24px 48px -16px rgba(7, 43, 69, 0.22);
  --shadow-navy: 0 20px 50px -12px rgba(4, 26, 44, 0.45);

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Layout */
  --container: 1240px;
  --header-h: 84px;
}

/* ------------------------- Reset & base ------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.15;
}

::selection {
  background: var(--sky);
  color: var(--navy-deep);
}

/* ------------------------- Utility ------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 112px 0;
  position: relative;
}

.section-tight {
  padding: 80px 0;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 18px;
}

.section-head p {
  color: var(--text-soft);
  font-size: 17px;
  max-width: 560px;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

.text-sky {
  color: var(--sky);
}
.text-accent {
  color: var(--accent);
}

/* ------------------------- Buttons ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s ease,
    background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 24px -8px rgba(14, 165, 164, 0.55);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(14, 165, 164, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--navy);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 18px 34px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 13.5px;
}

/* ------------------------- Top bar ------------------------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}

.topbar-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.topbar-msg svg {
  width: 15px;
  height: 15px;
  color: var(--sky);
  flex-shrink: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.topbar-links a svg {
  width: 14px;
  height: 14px;
  color: var(--sky);
}

.topbar-links a:hover {
  color: var(--sky);
}

@media (max-width: 720px) {
  .topbar .container {
    justify-content: center;
  }
  .topbar-msg span {
    display: none;
  }
  .topbar-links {
    gap: 18px;
  }
}

/* ------------------------- Header ------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -14px rgba(7, 43, 69, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 auto;
}

.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  border-radius: var(--r-pill);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--navy);
  background: var(--section-bg);
}

.nav-links a.active {
  color: var(--navy);
  background: var(--section-bg-2);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--navy);
}

.nav-call svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: calc(var(--header-h) + 40px);
    left: 16px;
    right: 16px;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    gap: 2px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.28s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-links a {
    padding: 13px 16px;
  }
  .nav-call span {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 34px;
  }
  .nav-call {
    display: none;
  }
}

/* ------------------------- Hero ------------------------- */
.hero {
  position: relative;
  --bg-photo: none;
  background-image: linear-gradient(155deg, rgba(4, 26, 44, 0.75) 0%, rgba(7, 43, 69, 0.65) 55%, rgba(10, 52, 83, 0.45) 100%), var(--bg-photo);
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
  padding: 108px 0 130px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(159, 199, 216, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  right: -320px;
  top: -420px;
  background: radial-gradient(circle at center, rgba(159, 199, 216, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: -220px;
  bottom: -320px;
  background: radial-gradient(circle at center, rgba(14, 165, 164, 0.22), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow {
  color: var(--sky);
}

.hero-copy .eyebrow::before {
  background: var(--sky);
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--sky);
}

.hero-copy p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--sky), #6fa4bb);
  margin-left: -10px;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust p {
  margin: 0;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: none;
}

.hero-trust strong {
  color: var(--white);
}

/* Hero visual panel */
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-navy);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(14, 165, 164, 0.2);
}

.hero-card-header span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.hero-stat {
  padding: 18px;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat .num .accent {
  color: var(--sky);
}

.hero-stat .label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 4px;
}

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-foot svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: -26px;
  background: var(--white);
  color: var(--navy);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 5s ease-in-out infinite;
}

.hero-badge .icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(14, 165, 164, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge .icon-circle svg {
  width: 20px;
  height: 20px;
  color: var(--accent-dark);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
}

.hero-badge span {
  font-size: 12px;
  color: var(--text-soft);
}

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

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 460px;
  }
  .hero-badge {
    right: 8px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 76px 0 110px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-badge {
    position: static;
    margin-top: 18px;
    animation: none;
  }
}

/* ------------------------- Stat strip ------------------------- */
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative;
  margin-top: -64px;
  z-index: 3;
}

.stat-strip-inner {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
}

.stat-item .label {
  font-size: 13.5px;
  color: var(--text-soft);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 760px) {
  .stat-strip {
    margin-top: -40px;
  }
  .stat-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 22px 12px;
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .stat-item .num {
    font-size: 26px;
  }
}

/* ------------------------- Logo / trusted-by strip ------------------------- */
.trusted-strip {
  padding: 64px 0;
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 30px;
}

.trusted-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.trusted-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--r-pill);
  background: var(--section-bg);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-soft);
}

.trusted-chip svg {
  width: 15px;
  height: 15px;
  color: var(--sky);
}

/* ------------------------- Cards: features / why-choose ------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

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

@media (max-width: 980px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(159, 199, 216, 0.6);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px -8px rgba(7, 43, 69, 0.4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--sky);
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ------------------------- About split ------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.split.reverse .split-visual {
  order: 2;
}

.split-copy p {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 18px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 30px;
}

.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text);
  font-weight: 500;
}

.split-list svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.split-visual {
  position: relative;
}

.visual-panel {
  --bg-photo: none;
  border-radius: var(--r-lg);
  background-image: linear-gradient(155deg, rgba(7, 43, 69, 0.45) 0%, rgba(4, 26, 44, 0.418) 100%), var(--bg-photo);
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3.4;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.visual-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(159, 199, 216, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
}

.visual-panel .glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(14, 165, 164, 0.35), transparent 70%);
  top: -80px;
  right: -80px;
}

.visual-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-mark img {
  width: 42%;
  opacity: 0.92;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.floating-chip {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.floating-chip .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 165, 164, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-chip .icon-circle svg {
  width: 22px;
  height: 22px;
  color: var(--accent-dark);
}

.floating-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
}

.floating-chip span {
  font-size: 12.5px;
  color: var(--text-soft);
}

@media (max-width: 560px) {
  .floating-chip {
    left: 12px;
    bottom: -18px;
    padding: 14px 16px;
  }
}

/* ------------------------- Services grid ------------------------- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card .feature-icon {
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  font-family: var(--font-display);
}

.service-card .service-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

.service-card.future {
  background: linear-gradient(155deg, var(--navy), var(--navy-deep));
  border: none;
  color: var(--white);
}

.service-card.future h3 {
  color: var(--white);
}

.service-card.future p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card.future .feature-icon {
  background: rgba(159, 199, 216, 0.16);
}

.service-card.future .service-link {
  color: var(--sky);
}

.future-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(159, 199, 216, 0.18);
  color: var(--sky);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(159, 199, 216, 0.35);
}

/* ------------------------- Industries ------------------------- */
.industry-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .industry-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.industry-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.industry-chip:hover {
  border-color: var(--sky);
  transform: translateY(-3px);
  background: var(--section-bg);
}

.industry-chip .ic {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--section-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industry-chip .ic svg {
  width: 19px;
  height: 19px;
  color: var(--navy);
}

/* ------------------------- Process steps ------------------------- */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

@media (max-width: 900px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}

.process-step {
  position: relative;
  padding-top: 8px;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sky);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.process-step p {
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ------------------------- CTA banner ------------------------- */
.cta-banner {
  --bg-photo: none;
  background-image: linear-gradient(135deg, rgba(4, 26, 44, 0.678), rgba(7, 43, 69, 0.63) 60%, rgba(10, 52, 83, 0.685)), var(--bg-photo);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  padding: 64px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(159, 199, 216, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, black, transparent 75%);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 16.5px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 44px 26px;
  }
}

/* ------------------------- Testimonials ------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 17px;
  height: 17px;
  color: #f5a623;
}

.testimonial-card p.quote {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 24px;
  flex-grow: 1;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  font-family: var(--font-display);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-soft);
}

/* ------------------------- Certifications ------------------------- */
.cert-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .cert-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cert-item {
  text-align: center;
  padding: 30px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.cert-item .ic {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--section-bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-item .ic svg {
  width: 26px;
  height: 26px;
  color: var(--navy);
}

.cert-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
}

.cert-item span {
  font-size: 13px;
  color: var(--text-soft);
}

/* ------------------------- FAQ accordion ------------------------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--navy);
}

.faq-q .plus {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: background 0.25s ease;
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--navy);
  transition: transform 0.3s ease;
}

.faq-q .plus::before {
  width: 10px;
  height: 2px;
}

.faq-q .plus::after {
  width: 2px;
  height: 10px;
}

.faq-item.open .faq-q .plus {
  background: var(--navy);
}

.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after {
  background: var(--white);
}

.faq-item.open .faq-q .plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 4px 24px;
  color: var(--text-soft);
  font-size: 15px;
  max-width: 640px;
}

/* ------------------------- Footer ------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 76px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand img {
  height: 40px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 14.5px;
  max-width: 280px;
  margin-bottom: 22px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14.5px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-col a:hover {
  color: var(--sky);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  margin-bottom: 14px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--sky);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links {
  display: flex;
  gap: 22px;
}

.footer-bottom-links a:hover {
  color: var(--sky);
}

/* ------------------------- Reveal animations ------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger .reveal:nth-child(1) {
  transition-delay: 0.04s;
}
.stagger .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger .reveal:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger .reveal:nth-child(4) {
  transition-delay: 0.28s;
}
.stagger .reveal:nth-child(5) {
  transition-delay: 0.36s;
}
.stagger .reveal:nth-child(6) {
  transition-delay: 0.44s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ------------------------- Page hero (inner pages) ------------------------- */
.page-hero {
  --bg-photo: none;
  background-image: linear-gradient(155deg, rgba(4, 26, 44, 0.788) 0%, rgba(7, 43, 69, 0.664) 60%, rgba(10, 52, 83, 0.658) 100%), var(--bg-photo);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 76px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(159, 199, 216, 0.14) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 90%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 22px;
}

.breadcrumb a:hover {
  color: var(--sky);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  max-width: 560px;
}

/* ------------------------- Forms ------------------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 560px) {
  .form-card {
    padding: 26px 20px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 620px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.field .required {
  color: var(--accent);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--section-bg);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  font-size: 15px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(159, 199, 216, 0.28);
}

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

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--accent);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.form-success.show {
  display: block;
}

.form-success .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(26, 156, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .icon-circle svg {
  width: 34px;
  height: 34px;
  color: var(--success);
}

.form-success h3 {
  margin-bottom: 10px;
}

.form-success p {
  color: var(--text-soft);
}

/* Quote page: multi-step */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
}

.step-indicator .step {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.step-indicator .step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-indicator .step.done::after,
.step-indicator .step.active::after {
  transform: scaleX(1);
}

.step-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-faint);
  margin-bottom: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

.step-labels span.active {
  color: var(--navy);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-select-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 8px;
}

@media (max-width: 560px) {
  .service-select-grid {
    grid-template-columns: 1fr;
  }
}

.service-check {
  position: relative;
}

.service-check input {
  position: absolute;
  opacity: 0;
}

.service-check label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.service-check label .box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--text-faint);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}

.service-check input:checked + label {
  border-color: var(--sky);
  background: var(--section-bg-2);
}

.service-check input:checked + label .box {
  background: var(--accent);
  border-color: var(--accent);
}

.service-check input:checked + label .box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 14px;
}

/* ------------------------- Contact page ------------------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.contact-card .feature-icon {
  margin: 0 auto 20px;
}

.contact-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-soft);
  font-size: 14.5px;
  margin-bottom: 4px;
}

.contact-card a.link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-dark);
}

.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/7;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.office-hours {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px;
}

.office-hours h3 {
  font-size: 18px;
  margin-bottom: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-row span:last-child {
  color: var(--text-soft);
}

/* ------------------------- Team ------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--sky), var(--navy));
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.team-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 16px 16px;
}

.team-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
}

.team-card span {
  font-size: 13.5px;
  color: var(--text-soft);
}

/* ------------------------- Timeline (about) ------------------------- */
.timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -39px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
}

.timeline-item .year {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent-dark);
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.timeline-item h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ------------------------- Values grid ------------------------- */
.value-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.value-card .feature-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.value-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--text-soft);
  font-size: 14.5px;
}

/* ------------------------- Misc ------------------------- */
.divider {
  height: 1px;
  background: var(--border);
  border: none;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--section-bg-2);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 90;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55);
  z-index: 90;
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}
