/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #1A5C7A;
  --teal-dark:   #134A63;
  --teal-light:  #E0EDF3;
  --teal-mid:    #1E6E8C;
  --ink:         #0D1B24;
  --ink-muted:   #2B4C5E;
  --ink-faint:   #7AAABB;
  --surface:     #FFFFFF;
  --surface-2:   #F3F7FA;
  --surface-3:   #E6F0F5;
  --border:      rgba(13, 92, 122, 0.12);
  --border-mid:  rgba(13, 92, 122, 0.22);
  --dark-bg:     #0D2535;
  --dark-bg-2:   #0A1E2C;
  --danger:      #DC2626;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 3px rgba(13,107,122,0.08);
  --shadow-md:   0 4px 16px rgba(13,107,122,0.1);
  --shadow-lg:   0 8px 32px rgba(13,107,122,0.15);
  --font:        'DM Sans', system-ui, sans-serif;
  --font-display:'Outfit', system-ui, sans-serif;
  --nav-h:       64px;
  --white-45:    rgba(255,255,255,0.45);
  --white-50:    rgba(255,255,255,0.5);
  --white-55:    rgba(255,255,255,0.55);
  --white-60:    rgba(255,255,255,0.6);
  --white-65:    rgba(255,255,255,0.65);
  --white-70:    rgba(255,255,255,0.7);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.3s ease;
  --cta-green:   #06C755;
  --cta-whatsapp: #25D366;
  --list-accent: #DC2626;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────────────────────── */
h1 { font-family: var(--font-display); font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.375rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.018em; }
h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; line-height: 1.3; margin-bottom: 1rem; }
h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 500; }
p  { font-size: 1rem; font-weight: 400; line-height: 1.7; color: var(--ink-muted); }

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.section-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  vertical-align: middle;
  margin-right: 0.5rem;
  opacity: 0.6;
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow { max-width: 920px; }

section { padding: 5rem 0; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.625rem 1.375rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s, box-shadow 0.18s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover  { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn:active { transform: scale(0.98); box-shadow: none; }

.btn--primary   { background: var(--teal); color: #fff; }
.btn--outline   { background: transparent; color: var(--teal); border: 1.5px solid var(--teal); }
.btn--ghost     { background: transparent; color: var(--ink-muted); border: 1.5px solid var(--border-mid); }
.btn--white     { background: #fff; color: var(--teal); }
.btn--sm        { font-size: 0.875rem; padding: 0.45rem 1.125rem; }
.btn--lg        { font-size: 1rem; padding: 0.875rem 1.875rem; }

.nav__logo-img {
  height: 130px;
  width: auto;
  display: block;
}

.footer__logo-link {display: inline-block; margin-bottom: 0.1rem; }
.footer__logo-img  { height: 100px; width: auto; display: block; }

/* ── Navigation ──────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--teal-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition-fast);
}

.nav--scrolled { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.nav__center {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.nav__link:hover        { color: #fff; background: rgba(255,255,255,0.12); }
.nav__link--active      { color: #fff; }

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

.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav__dropdown-toggle:hover { background: rgba(255,255,255,0.12); }

.nav__dropdown-toggle.nav__link--active {
  font-weight: 600;
}

.nav__dropdown-toggle svg {
  width: 10px;
  height: 6px;
  transition: transform var(--transition-fast);
}

.nav__dropdown.nav__dropdown--open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(15, 47, 58, 0.95);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 0.5rem;
  min-width: 180px;
  z-index: 100;
}

.nav__dropdown.nav__dropdown--open .nav__dropdown-menu {
  display: flex;
}

.nav__dropdown-item {
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast), background var(--transition-fast);
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav__dropdown-item--active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 500;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav__lang { display: flex; align-items: center; gap: 0.375rem; }
.nav__lang-link { font-size: 0.75rem; font-weight: 400; color: var(--white-60); }
.nav__lang-link--active { color: #fff; font-weight: 500; }
.nav__lang-sep { color: rgba(255,255,255,0.2); font-size: 0.75rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--teal);
  background-image:
    radial-gradient(ellipse at 75% 15%, rgba(30,110,140,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(10,30,44,0.5) 0%, transparent 50%);
  padding: 5.5rem 0 7rem;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  margin-bottom: -2.5rem;
}

/* Grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow { color: var(--white-50); }

.hero .section-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero .section-label::before {
  display: none;
}

.hero h1 { color: #fff; margin-bottom: 2rem; }

.hero__sub {
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--white-70);
  margin-bottom: 3rem;
  text-align: justify;
}

.hero__sub strong {
  color: #fff;
  font-weight: 400;
}

.hero__actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero__cards { display: flex; flex-direction: column; gap: 0.75rem; }

.hero__card {
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-md);
  padding: 1.125rem 1.375rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.hero__card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateX(4px);
}

.hero__card-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-45);
  margin-bottom: 0.25rem;
}

.hero__card-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.125rem;
}

.hero__card-desc {
  font-size: 0.8125rem;
  color: var(--white-50);
  line-height: 1.55;
}

/* ── Hero load animations ────────────────────────────────────────────────── */
.hero-anim {
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn 0.65s ease forwards;
}

.hero-anim--delay-1 { animation-delay: 0.08s; }
.hero-anim--delay-2 { animation-delay: 0.2s; }
.hero-anim--delay-3 { animation-delay: 0.34s; }
.hero-anim--delay-4 { animation-delay: 0.48s; }
.hero-anim--delay-5 { animation-delay: 0.62s; }
.hero-anim--delay-6 { animation-delay: 0.76s; }

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* ── Services grid / process timeline ──────────────────────────────────────── */
.services { background: var(--surface-2); padding-top: 5rem; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  position: relative;
  max-width: 100%;
  text-align: left;
  overflow: visible;
}

/* Timeline card image */
.service-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Timeline card label/badge */
.service-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  padding: 0;
  border: none;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.service-card__label p {
  color: var(--teal);
  margin: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
}

.service-card__label svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  stroke-width: 2;
  flex-shrink: 0;
}


/* Timeline card content */
.service-card__title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
  padding: 0;
}

.service-card__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  padding: 0;
}

.service-card__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 0.5rem;
  padding: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--teal);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  margin: 0;
}

.service-card:hover .service-card__link {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Text-only service card variant ── */
.service-card--text {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.service-card--text:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* ────────────────────────────────────────────────────────────────────────── */
/*  WHAT WE OFFER — Image-Heavy Service Cards (60% image, 40% content)         */
/* ────────────────────────────────────────────────────────────────────────── */

.services--alt {
  background: var(--surface);
  padding: 5rem 0;
}

.services__grid--alt {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Card container ── */
.service-card--alt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  height: 360px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

.service-card--alt:last-child { margin-bottom: 0; }
.service-card--alt:nth-child(even) { grid-template-columns: 0.8fr 1.2fr; }
.service-card--alt:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Alternating layout ── */
.service-card--alt:nth-child(odd) .service-card__image-wrapper { order: 1; }
.service-card--alt:nth-child(odd) .service-card--alt__content { order: 2; }
.service-card--alt:nth-child(even) .service-card__image-wrapper { order: 2; }
.service-card--alt:nth-child(even) .service-card--alt__content { order: 1; }

/* ── Content area ── */
.service-card--alt__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 2rem;
  justify-content: center;
}

/* ── Label/Badge ── */
.service-card__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.service-card__label p {
  color: var(--teal);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  margin: 0;
}

.service-card__label svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── Typography ── */
.service-card--alt .service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.service-card--alt .service-card__desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.service-card--alt .service-card__subtitle { display: none; }

/* ── Button ── */
.service-card--alt .service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--teal);
  color: white;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  width: fit-content;
}

.service-card--alt:hover .service-card__link {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── Image area ── */
.service-card--alt .service-card__image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  transition: transform var(--transition-smooth);
}

.service-card--alt:hover .service-card__image-wrapper { transform: scale(1.02); }

.service-card--alt .service-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-smooth);
}

.service-card--alt:hover .service-card__image { transform: scale(1.03); }

/* ── Why section ─────────────────────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.why__heading { margin-bottom: 1rem; }
.why__body    { font-size: 0.9375rem; }

.pillars { display: flex; flex-direction: column; gap: 1.25rem; }

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  border: 0.5px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.pillar:hover {
  background: var(--surface-2);
  border-color: var(--border);
}

.pillar__dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 0.375rem;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pillar:hover .pillar__dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 3px rgba(26,95,110,0.15);
}

.pillar__title { font-size: 0.875rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.pillar__text  { font-size: 0.8125rem; color: var(--ink-muted); line-height: 1.6; }

/* ── Contact form ─────────────────────────────────────────────────────────── */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  padding: 0.625rem 0.875rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,95,110,0.08);
}

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

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--teal-dark);
  color: var(--white-65);
  padding: 2rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer__brand { margin-bottom: 1.5rem; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.1rem;
}

.footer__address { font-size: 0.75rem; font-weight: 300; color: var(--white-60); }

.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.footer__col { display: flex; flex-direction: column; gap: 0.375rem; align-items: center; }
.footer__col-title { font-size: 0.625rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-70); margin-bottom: 0.25rem; }
.footer__col a { font-size: 0.75rem; font-weight: 300; color: var(--white-65); transition: color var(--transition-fast); }
.footer__col a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 0.3rem;
}

.footer__logo-link { display: flex; align-items: center; }

.footer__bottom p { margin: 0; color: rgba(255,255,255,0.4); line-height: 1.4; font-size: 0.75rem; }
.footer__lang { display: flex; gap: 0.5rem; align-items: center; }

/* ── Floating CTA ─────────────────────────────────────────────────────────── */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  z-index: 200;
}

.float-cta__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.float-cta__btn:hover { transform: scale(1.08); box-shadow: 0 4px 20px rgba(0,0,0,0.22); }

.float-cta__btn--line      { background: var(--cta-green); }
.float-cta__btn--whatsapp  { background: var(--cta-whatsapp); }

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

.page-hero h1 { color: #fff; margin-bottom: 0.875rem; position: relative; }
.page-hero p  { color: var(--white-65); max-width: 560px; position: relative; }

.page-hero--with-bg {
  background-position: center;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  min-height: clamp(450px, 85vh, 750px);
  display: grid;
  align-content: center;
  padding: 0;
  position: relative;
}

.page-hero--with-bg .container {
  width: 100%;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.page-hero--with-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(19, 74, 99, 0.70);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .page-hero--with-bg {
    background-size: contain;
    background-position: center 60%;
    min-height: 500px;
  }
}

.hero-img {
  height: 480px;
  border-radius: var(--radius-lg);
}

/* ── Fall protection hero video ──────────────────────────────────────────── */
.fp-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.fp-hero-bg--mobile { display: none; }

/* ── Page Hero ───────────────────────────────────────────────────────────── */
.page-hero {
  background: var(--teal);
  background-image:
    radial-gradient(ellipse at 75% 15%, rgba(30,110,140,0.7) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(10,30,44,0.5) 0%, transparent 50%);
  padding: 5.5rem 0 7rem;
  overflow: hidden;
  position: relative;
  margin-bottom: -2.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

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

.page-hero h1 { color: #fff; margin-bottom: 1.25rem; }

.page-hero .eyebrow { color: var(--white-50); }

.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── Section with two-column layout ──────────────────────────────────────────── */
.section-2col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: center;
}

.section-2col--reverse { direction: rtl; }
.section-2col--reverse > * { direction: ltr; }

/* ── Text box with max-width ──────────────────────────────────────────────── */
.text-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-box--max-620 { max-width: 620px; }
.text-box--max-700 { max-width: 700px; }

.text-box p { margin: 0; }

/* ── Prose utility for body text line-length ────────────────────────────── */
.prose { max-width: 65ch; }
.prose p { margin: 0; }

/* ── Bordered list ────────────────────────────────────────────────────────── */
.list--bordered {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list--bordered li {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(13, 92, 122, 0.18);
  margin: 0;
}

.list--bordered li:last-child {
  border-bottom: none;
}

.list--bordered li span {
  color: #C04828;
}

/* ── Card with top accent ────────────────────────────────────────────────── */
.card--accent-top {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--teal);
  padding: 2rem;
}

.who-section .card--accent-top {
  background: var(--surface);
}

.how-works .card-teal-top {
  background: var(--surface-2);
}

.how-works__card {
  background: var(--surface-2) !important;
}

.card--accent-top h3 { margin-bottom: 0.75rem; }

.card--accent-top p { margin: 0; line-height: 1.65; }

.card--accent-danger {
  border: 1px solid rgba(220, 38, 38, 0.15);
  background: rgba(220, 38, 38, 0.05);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.card--teal-bg {
  background: var(--teal);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: white;
}

.card--teal-bg p {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.card--teal-bg strong {
  color: #fff;
}

/* ── Three-column card grid ──────────────────────────────────────────────── */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ── Step cards with numbering ───────────────────────────────────────────── */
.step-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
  font-family: var(--font-display);
}

/* ── Timeline ────────────────────────────────────────────────────────────── */
.timeline-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline-line {
  position: absolute;
  top: 7px;
  left: 16.67%;
  right: 16.67%;
  height: 1.5px;
  background: var(--border);
  z-index: 0;
}

.timeline-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1.5px var(--teal);
  margin-bottom: 1.5rem;
}

.timeline-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  text-align: center;
}

.timeline-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  text-align: center;
}

.timeline-desc {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

/* ── Spacing utilities ───────────────────────────────────────────────────── */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mt-4 { margin-top: 4rem; }

.mb-1 { margin-bottom: 0rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.5rem; }
.mb-4 { margin-bottom: 4rem; }

.gap-1 { gap: 1rem; }
.gap-2 { gap: 1.5rem; }
.gap-3 { gap: 2.5rem; }

/* ── Section padding variations ──────────────────────────────────────────── */
.section--light {
  padding: 3rem 0;
  background: var(--surface);
}

.section--lighter {
  padding: 5rem 0;
  background: var(--surface-2);
}

.section--tight {
  padding: 5rem 0;
  background: var(--surface);
}

.section--spacious {
  padding: 5rem 0;
  background: var(--surface);
}

.section--spaced {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: var(--surface);
}

@media (max-width: 768px) {
  .section--spaced {
    padding-top: 5rem;
  }

  .fp-hero-bg--desktop { display: none; }
  .fp-hero-bg--mobile  { display: block; }

  .section-2col { grid-template-columns: 1fr !important; }

  .hero-img { height: auto; }

  .page-hero .section-2col > div:last-child {
    overflow: visible !important;
    height: auto !important;
  }

  /* ── How it works section - mobile responsive ── */
  .how-works h2 {
    font-size: 1.5rem;
  }

  .how-works__wrapper {
    margin: 0 !important;
  }

  .how-works__timeline-line {
    display: none;
  }

  .how-works__dot {
    display: none !important;
  }

  .how-works__step {
    gap: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .how-works__card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .how-works__content {
    width: 100% !important;
  }

  .how-works__content p:first-of-type {
    margin-bottom: 2rem;
  }

  .how-works__image-wrapper {
    width: 100% !important;
    margin: 0 !important;
    max-height: 240px !important;
    border-radius: 12px !important;
  }

  .how-works__step3-timeline {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }

  .how-works__step3-line {
    display: none;
  }

  .how-works h3 {
    font-size: 1rem;
  }

  .how-works h4 {
    font-size: 0.85rem;
  }
}

/* ── Feature list ─────────────────────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }

.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.feature-item__icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.feature-item:hover .feature-item__icon {
  background: var(--surface-3);
  transform: scale(1.05);
}

.feature-item__title { font-size: 0.9375rem; font-weight: 600; margin-bottom: 0.25rem; }
.feature-item__text  { font-size: 0.875rem; color: var(--ink-muted); }

/* ── Two-col content ─────────────────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── CTA band ────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, var(--teal-mid) 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,95,110,0.6), transparent);
}

.cta-band h2 { color: #fff; margin-bottom: 2rem; }
.cta-band p  { color: var(--white-55); margin-bottom: 2rem; }
.cta-band .btn--white { transition: background 0.2s, color 0.2s, transform 0.18s, box-shadow 0.18s; }
.cta-band .btn--white:hover { background: var(--teal-light); color: var(--teal-dark); }

/* ── Alert / success ─────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.alert--success { background: #E6F4F6; color: var(--teal-dark); border: 1px solid rgba(13,107,122,0.2); transition: opacity 0.4s; }
.alert--fading  { opacity: 0; }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.reveal--left  { transform: translateX(-28px); }
.reveal.reveal--right { transform: translateX(28px); }
.reveal.reveal--scale { transform: scale(0.96); }

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 950px) {
  /* Fix 3: nav maintains dark color on mobile */
  .nav {
    background: #134A63;
  }

  /* Fix 1: hide desktop links, show toggle; lang stays beside logo */
  .nav__center { display: none; position: static !important; transform: none !important; left: auto !important; }
  .nav__right { display: none; }
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__inner { display: flex; padding: 0 1.25rem; gap: 0; }
  .nav__lang { margin-left: 0.75rem; }

  /* Fix 1: white burger bars on dark nav */
  .nav__toggle span { background: #fff; }

  /* Open state: expand nav element so links are contained below navbar */
  .nav {
    position: relative;
  }

  .nav--open {
    height: auto !important;
  }

  .nav--open .nav__inner {
    flex-wrap: wrap;
    align-items: center;
    height: auto;
    min-height: var(--nav-h);
    padding-bottom: 0.75rem;
  }

  .nav--open .nav__center {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 1.25rem 0.5rem;
    gap: 0.625rem;
    order: 10;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
  }

  .nav--open .nav__right {
    display: flex;
    width: 100%;
    order: 11;
    padding: 0 1.5rem 0.75rem;
    border-top: none;
    justify-content: flex-start;
  }

  .nav__dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav__dropdown-menu {
    position: static;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 0;
    margin-left: 0.75rem;
    border-radius: 0;
    min-width: auto;
  }

  .nav__dropdown.nav__dropdown--open .nav__dropdown-menu {
    display: flex;
  }

  .nav__dropdown-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    text-align: left;
  }

  /* Fix 2: override inline grid-template-columns on two-col elements */
  .hero__grid,
  .why__grid,
  .two-col,
  .two-col-img   { grid-template-columns: 1fr !important; gap: 2rem !important; }

  /* Move img-container to bottom on mobile */
  .two-col .img-container { order: 2; }
  .two-col > div:not(.img-container) { order: 1; }

  /* Mobile timeline layout */
  .services__grid {
    gap: 3rem;
  }

  .services__grid::before {
    left: 12px;
    top: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-left: 3rem;
  }

  .service-card::after {
    left: 0;
    top: 0.75rem;
  }

  .service-card:nth-child(2) .service-card__image-wrapper,
  .service-card:nth-child(3) .service-card__image-wrapper {
    order: 0;
  }

  .service-card__image-wrapper {
    height: 240px;
  }

  /* Service cards: 2-column → 1-column stack on mobile */
  .service-card--alt {
    grid-template-columns: 1fr;
    height: auto;
  }

  .service-card--alt:nth-child(even) { grid-template-columns: 1fr; }
  .service-card--alt:nth-child(odd) .service-card__image-wrapper { order: 0; }
  .service-card--alt:nth-child(even) .service-card__image-wrapper { order: 0; }
  .service-card--alt:nth-child(odd) .service-card--alt__content { order: 1; }
  .service-card--alt:nth-child(even) .service-card--alt__content { order: 1; }

  .service-card--alt .service-card__image-wrapper {
    height: 240px;
    min-height: 240px;
    margin-bottom: 0;
  }

  .service-card--alt__content {
    gap: 0.75rem;
    padding: 0 2rem 1.5rem 2rem;
  }

  .contact-form  { grid-template-columns: 1fr; }
  .footer__nav   { flex-direction: column; gap: 2rem; }

  /* Audience grid: 3 columns → 2 columns on tablet */
  .audience-grid { grid-template-columns: repeat(2, 1fr); }

  /* Fix 2: override non-class inline grids used across sections */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns: repeat(2, 1fr)"] {
    grid-template-columns: 1fr !important;
  }

  /* Fix 2: FP 4-column app grid → 2 columns on mobile */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
}

@media (max-width: 768px) {
  .hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
  .page-hero { clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%); }
  .hero__sub { text-align: left; }
}

@media (max-width: 480px) {
  .nav__center {
    position: static;
    left: auto;
    transform: none;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .float-cta { bottom: 1rem; right: 1rem; }

  /* Audience grid: 2 columns → 1 column on mobile */
  .audience-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-anim { opacity: 1; transform: none; animation: none; }
}
/* ── Audience cards (Who We Work With) ──────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.audience-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.audience-card:hover {
  border-color: var(--border-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--teal);
  stroke-width: 1.75;
  fill: none;
}

.audience-card__role {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
}

.audience-card__desc {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── Partner cards ───────────────────────────────────────────────────────── */
.partner-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.partner-card {
  padding: 1.75rem 2.25rem;
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-md);
  text-align: center;
  min-width: 200px;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.partner-card__name {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.375rem;
}

.partner-card__meta {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ── Proof cards ─────────────────────────────────────────────────────────── */
.proof-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.proof-card--accent {
  background: var(--teal);
  border-color: transparent;
}

.proof-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.625rem;
}

.proof-card--accent .proof-card__label { color: rgba(255,255,255,0.55); }

.proof-card__body {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Page hero — photo variant ───────────────────────────────────────────── */
.page-hero--photo {
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 4rem 0;
  background: var(--teal-dark);
  clip-path: none;
  margin-bottom: 0;
}

.page-hero__bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 74, 99, 0.40);
  z-index: 1;
  pointer-events: none;
}

.page-hero--photo .page-hero__inner { position: relative; z-index: 2; }

.page-hero__subtitle {
  font-size: 1.0625rem;
  line-height: 1.8;
  max-width: 620px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
}

/* ── Beat section: intro + two-column grid ───────────────────────────────── */
.beat-two-col {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
}

.beat-two-col__grid { max-width: 1000px; margin: 0 auto; }

.beat-two-col__intro { margin-bottom: 3rem; }

.beat-two-col__intro h2 { margin: 0 0 1.5rem 0; }

.beat-two-col__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
  max-width: 680px;
}

.beat-two-col__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.beat-two-col__video { border-radius: var(--radius-lg); overflow: hidden; }

.beat-two-col__video video {
  width: 100%; height: 300px;
  object-fit: cover; display: block;
}

.beat-two-col__points { display: flex; flex-direction: column; gap: 2rem; }

/* ── Numbered point list ─────────────────────────────────────────────────── */
.point { display: flex; gap: 1.25rem; align-items: flex-start; }

.point__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem; height: 2.25rem;
  background: var(--teal-light);
  border-radius: 8px;
  font-size: 0.9375rem; font-weight: 700;
  color: var(--teal);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.point__title { font-weight: 600; color: var(--ink); margin-bottom: 0.35rem; }

.point__desc { font-size: 0.9375rem; color: var(--ink-muted); margin-bottom: 1rem; line-height: 1.65; }

/* ── Solution two-column ─────────────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem; align-items: center;
}

.solution__title { font-size: 2rem; line-height: 1.2; margin: 0 0 1.5rem 0; color: var(--ink); }

.solution__content { display: flex; flex-direction: column; gap: 1.5rem; }

.solution__text { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; margin: 0; }

.solution__image { width: 90%; border-radius: var(--radius-lg); display: block; }

/* ── How-it-works section ────────────────────────────────────────────────── */
.how-works { background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface-2) 100%); padding: 3rem 0; }

.how-works h2 { margin-bottom: 1rem; }

.how-works__intro {
  font-size: 0.9375rem; line-height: 1.7;
  color: var(--ink-muted); max-width: 700px; margin-bottom: 3rem;
}

/* ── Step cards (image + numbered label + content) ───────────────────────── */
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--teal);
  overflow: hidden;
  display: flex; flex-direction: column;
}

.step-card__image { width: 100%; height: 220px; object-fit: cover; display: block; }

.step-card__content { padding: 2rem; }

.step-card h3 { margin-bottom: 0.75rem; }

.step-card p { margin: 0; line-height: 1.65; }

.step-card__num {
  font-size: 0.8125rem; font-weight: 600;
  color: var(--teal); margin-bottom: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ── Timeline responsive rules (desktop defined above) ───────────────────── */
.timeline-container { margin-top: 2rem; }

/* ── Who-it-is-for section ───────────────────────────────────────────────── */
.who-section { padding: 3rem 0; background: var(--surface-2); }

.who-section__intro { max-width: 960px; margin: 0 auto 3rem; }

.who-section h2 { margin-bottom: 1rem; }

.who-section__text {
  font-size: 0.9375rem; line-height: 1.7;
  color: var(--ink-muted); max-width: 700px; margin-bottom: 3rem;
}

/* ── Case study ──────────────────────────────────────────────────────────── */
.case-study { background: var(--surface-2); padding: 3rem 0; }

.case-study__intro { max-width: 1000px; margin: 0 0 2.5rem; }

.case-study__title { font-size: 2rem; line-height: 1.2; margin-bottom: 2rem; color: var(--ink); }

.case-study__subtitle { font-size: 0.9375rem; line-height: 1.7; margin-bottom: 2.5rem; color: var(--ink-muted); }

.case-study__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 2.5rem;
}

.case-study__note {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  max-width: 900px; margin: 0 auto;
}

.case-study__note p { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; margin-bottom: 1rem; }
.case-study__note p:last-child { margin-bottom: 0; }
.case-study__note strong { color: var(--ink); }

/* ── Metric cards ────────────────────────────────────────────────────────── */
.metric-card {
  padding: 2rem; border: 1px solid var(--border);
  border-radius: var(--radius-lg); background: white;
}

.metric-card--highlight { background: var(--teal); border-color: var(--teal); }

.metric-card__number {
  font-size: 2.5rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.5rem;
  font-family: var(--font-display);
}

.metric-card--highlight .metric-card__number { color: #fff; }

.metric-card__title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }

.metric-card--highlight .metric-card__title { color: #fff; }

.metric-card__desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; margin: 0; }

.metric-card--highlight .metric-card__desc { color: rgba(255,255,255,0.9); }

/* ── Leak-prevention components: responsive ─────────────────────────────── */
@media (max-width: 1024px) {
  .beat-two-col__content { grid-template-columns: 1fr; gap: 3rem; }
  .solution-grid { grid-template-columns: 1fr; }
  .grid-3col { grid-template-columns: repeat(2, 1fr); }
  .case-study__metrics { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-hero--photo { min-height: 400px; padding: 3rem 0; }
  .page-hero__subtitle { font-size: 1rem; max-width: 100%; }
  .page-hero__overlay { background: rgba(19, 74, 99, 0.55); }
  .beat-two-col { padding: 3rem 1.25rem; }
  .beat-two-col__intro { margin-bottom: 2rem; }
  .beat-two-col__video video { height: 200px; }
  .beat-two-col__points { gap: 1.5rem; }
  .point { gap: 1rem; }
  .how-works { padding: 2.5rem 0; }
  .how-works h2 { font-size: 1.5rem; }
  .grid-3col { grid-template-columns: 1fr; }
  .timeline-container { grid-template-columns: 1fr; gap: 2rem; }
  .timeline-line { top: 10px; left: 10px; right: auto; width: 3px; height: calc(100% - 10px); }
  .timeline-node { align-items: flex-start; padding-left: 2.5rem; text-align: left; }
  .timeline-label, .timeline-title, .timeline-desc { text-align: left; }
  .timeline-dot { position: absolute; top: 0; left: 0; margin-bottom: 0; }
  .who-section { padding: 2.5rem 0; }
  .who-section h2 { font-size: 1.5rem; }
  .case-study { padding: 2.5rem 0; }
  .case-study__title { font-size: 1.5rem; }
  .metric-card__number { font-size: 2rem; }
  .cta-band { padding: 3rem 0; }
  .cta-band h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
  .cta-band p { font-size: 0.9375rem; margin-bottom: 1.5rem; }

  /* Transition grid responsive */
  .transition-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .transition-grid > div:nth-child(2) {
    padding: 1.5rem 0 !important;
    background: transparent !important;
  }

  .transition-grid > div:nth-child(2) svg {
    transform: rotate(90deg);
  }

  .transition-grid > div:nth-child(1) {
    border-radius: var(--radius-lg) !important;
  }

  .transition-grid > div:nth-child(3) {
    border-radius: var(--radius-lg) !important;
    margin-top: 0 !important;
  }
}

@media (max-width: 480px) {
  .page-hero--photo { min-height: 350px; }
  .page-hero__subtitle { font-size: 0.9375rem; margin-bottom: 1.5rem; }
  .beat-two-col__video video { height: 200px; }
  .point__number { width: 2rem; height: 2rem; font-size: 0.8rem; }
  .metric-card { padding: 1.5rem; }
  .metric-card__number { font-size: 1.75rem; }
}

/* ── FAQ chevron animation ──────────────────────────────────────────────── */
.faq-chevron {
  display: inline-block;
  transition: transform 0.3s ease;
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

/* ── Utility classes for inline style extraction ────────────────────────── */
.section-pad-lg { padding: 3rem 0; }
.section-pad-md { padding: 3rem 0; }
.bg-surface { background: var(--surface); }
.bg-gradient-light { background: linear-gradient(135deg, var(--surface-2), var(--surface-3)); }
.max-w-1000 { max-width: 1000px; margin: 0 auto; }
.img-container { border-radius: var(--radius-lg); overflow: hidden; }
.img-fill { width: 100%; height: 100%; display: block; object-fit: cover; }
.txt-meta { font-size: 0.9375rem; color: var(--ink-muted); line-height: 1.7; margin: 0; }

/* ── Case Study Carousel ─────────────────────────────────────────────────── */
.cs-carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-2);
  max-width: 600px;
  margin: 0 auto;
}

.cs-carousel__track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.25, 0, 0.05, 1);
}

.cs-carousel__slide {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 21 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
}

.cs-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.cs-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: box-shadow var(--transition-fast), background var(--transition-fast);
  color: var(--ink);
}
.cs-carousel__btn:hover { background: #fff; box-shadow: var(--shadow-md); }
.cs-carousel__btn:disabled { opacity: 0.25; pointer-events: none; }
.cs-carousel__btn--prev { left: 0.75rem; }
.cs-carousel__btn--next { right: 0.75rem; }

.cs-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 0 0.25rem;
}

.cs-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  border: none;
  padding: 0;
}
.cs-carousel__dot--active {
  background: var(--teal);
  transform: scale(1.4);
}
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--teal-light);
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.step-flex { display: flex; gap: 1.25rem; align-items: flex-start; }
.icon-box {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--teal-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card-teal-top {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border-top: 3px solid var(--teal);
}
.feature-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-muted);
}
.body-sm { font-size: 0.875rem; color: var(--ink-muted); margin: 0; line-height: 1.6; }
.body-xs { font-size: 0.9375rem; color: var(--ink-muted); margin: 0; line-height: 1.65; }

/* ── Responsive additions ────────────────────────────────────────────────── */
@media (max-width: 950px) {
  .app-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .audience-grid { grid-template-columns: 1fr; }
  .partner-grid { flex-direction: column; align-items: center; }
  .partner-card { width: 100%; max-width: 340px; }

  /* Alt layout mobile */
  .service-card--alt {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 3rem 1.25rem !important;
  }


  .service-card--alt:nth-child(even) .service-card__image-wrapper,
  .service-card--alt:nth-child(odd) .service-card__image-wrapper {
    order: 0 !important;
  }

  .service-card--alt:nth-child(even) .service-card--alt__content,
  .service-card--alt:nth-child(odd) .service-card--alt__content {
    order: 0 !important;
  }

  .service-card--alt .service-card__image-wrapper {
    height: 260px;
  }

  .service-card--alt .service-card__title {
    font-size: 1.5rem;
  }

  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    gap: 1rem;
  }

  .footer__inner {
    padding: 0 1.25rem;
  }
}

/* ── Glass button (hero secondary) ──────────────────────────────────────────── */
.btn--glass {
  background: rgba(19,74,99,0.6);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

/* ── Hero image ──────────────────────────────────────────────────────────────── */
.hero__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: block;
}

/* ── Error page ──────────────────────────────────────────────────────────────── */
.error-page { padding: 6rem 0; text-align: center; }
.error-page__code { font-size: 4rem; font-weight: 600; color: var(--teal); opacity: 0.2; line-height: 1; margin-bottom: 1.5rem; }
.error-page__heading { font-size: 1.75rem; margin-bottom: 1rem; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── About pillars ───────────────────────────────────────────────────────────── */
.about__pillars { display: flex; flex-direction: column; gap: 1.25rem; }
.about__pillar { padding: 1.25rem; background: var(--surface-2); border-radius: var(--radius-md); }
.about__pillar-title { font-size: 0.9375rem; font-weight: 600; color: var(--ink); margin-bottom: 0.375rem; }
.about__pillar-desc { font-size: 0.875rem; color: var(--ink-muted); margin: 0; }
.about__body p + p { margin-top: 1rem; }

/* ── Spacing additions ───────────────────────────────────────────────────────── */
.mt-075 { margin-top: 0.75rem; }
.mb-075 { margin-bottom: 0.75rem; }
.text-center { text-align: center; }

/* ── Proof section (home) ────────────────────────────────────────────────────── */
.proof-col { display: flex; flex-direction: column; gap: 1.5rem; justify-content: center; height: 100%; }
.proof-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); text-align: center; }
.proof-card--centered { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem 1.5rem; }
.proof-card__logo { height: 40px; width: auto; margin-bottom: 1rem; }
.proof-card__stat { font-size: 0.875rem; color: var(--ink-muted); margin: 0; }

/* ── Feature card (image + body, used on fall protection page) ───────────────── */
.feature-card { background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.feature-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.feature-card__body { padding: 1.5rem; flex: 1; }
.feature-card__title { font-size: 1.125rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem; }

/* ── Contact details sidebar ─────────────────────────────────────────────────── */
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 1rem; }
.contact-label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 0.25rem; }
.contact-label--gap { margin-bottom: 0.5rem; }
.contact-value { font-size: 0.9rem; color: var(--teal); }
.contact-actions { display: flex; gap: 0.75rem; }
.contact-address { font-size: 0.875rem; }

/* ── Micro-interactions ──────────────────────────────────────────────────────── */
@keyframes ripple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn:active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

/* ── Blog index ──────────────────────────────────────────────────────────── */
.blog__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  transition: box-shadow var(--transition-smooth), transform var(--transition-smooth);
}

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

/* No-image variant: top accent + subtle tinted background */
.blog-card:not(:has(.blog-card__image)) {
  border-top: 3px solid var(--teal);
  background: var(--surface-2);
}

.blog-card__image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--surface-3);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  color: transparent; /* suppress alt text on broken images */
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}

.blog-card__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 200px;
}

.blog-card__tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.28;
  letter-spacing: -0.015em;
  margin: 0;
}

.blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin: 0.25rem 0 0;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 0.5px solid var(--border);
}

.blog-card__meta span {
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

.blog-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
  transition: color var(--transition-fast);
}

.blog-card__link:hover {
  color: var(--teal-dark);
}

@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card__image {
    width: 100%;
    height: 200px;
  }

  .blog-card__content {
    padding: 1.5rem;
    min-height: unset;
  }
}

/* ── Blog post article ───────────────────────────────────────────────────── */
.blog-post__byline {
  font-size: 0.875rem;
  margin-top: 0.125rem;
}

.blog-post__content p {
  margin-bottom: 1.25rem;
}

.blog-post__content p:last-of-type {
  margin-bottom: 0;
}

/* Scoped h2 — article subheadings, smaller than page section headings */
.blog-post__content h2 {
  font-size: clamp(1.1875rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  padding-bottom: 0.75rem;
  position: relative;
}

.blog-post__content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35.5rem;
  height: 2px;
  background: var(--teal-light);
  border-radius: 0px;
}

.blog-post__content h2:first-child {
  margin-top: 0;
}

.blog-post__content ol,
.blog-post__content ul {
  padding-left: 1.375rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.blog-post__content ol {
  list-style: decimal;
}

.blog-post__content ul {
  list-style: disc;
}

.blog-post__content li {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.7;
  padding-left: 0.25rem;
}

.blog-post__content strong {
  font-weight: 600;
  color: var(--ink);
}

.blog-post__content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-fast);
}

.blog-post__content a:hover {
  color: var(--teal-dark);
}

/* Inline CTA callout */
.blog-post__cta-inline {
  background: var(--teal-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.625rem;
  margin-top: 2.75rem;
}

.blog-post__cta-inline p {
  font-size: 0.9375rem;
  color: var(--ink);
  margin: 0;
  line-height: 1.65;
}

.blog-post__cta-inline a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}

.blog-post__cta-inline a:hover {
  color: var(--teal-dark);
}

/* Related / nav row at base of article */
.blog-post__related {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .blog-post__related {
    flex-direction: column;
  }

  .blog-post__related .btn {
    width: 100%;
    justify-content: center;
  }
}