/* ===================================
   DESIGN TOKENS
   Fonts: Syne (display, 700/800) + Figtree (body, 400/500/600)
   Palette: deep ocean dark · rich teal · punchy orange
=================================== */
:root {
  /* --- Palette --- */
  --deep:          #0D1A1F;   /* hero / CTA dark bg */
  --deep-mid:      #162830;   /* slightly lighter dark */

  --teal:          #14B8A6;   /* brand – decorative, backgrounds */
  --teal-dark:     #0D9488;   /* hover on teal backgrounds */
  --teal-text:     #0A7A70;   /* teal text on white – 5.2:1 contrast ✓ */
  --teal-deep:     #0C6E66;   /* teal bg with white text – 5.5:1 contrast ✓ */
  --teal-bright:   #2DD4BF;   /* on dark surfaces – teal-400 */
  --teal-xlight:   #F0FDFA;   /* section tints – teal-50 */
  --teal-light:    #99F6E4;   /* decorative accent */

  --orange:        #C94517;   /* primary CTA – 4.84:1 with white ✓ */
  --orange-dark:   #A83A0E;   /* hover */

  --ink:           #111827;
  --mid:           #4B5563;
  --muted:         #9CA3AF;
  --border:        #E5E7EB;
  --surface:       #F9FAFB;
  --white:         #FFFFFF;

  /* --- Typography --- */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Figtree', sans-serif;

  /* --- Shape --- */
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  /* --- Shadow --- */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --shadow-orange: 0 4px 20px rgba(201,69,23,0.38);
  --shadow-teal:   0 4px 20px rgba(20,184,166,0.32);

  --transition: 0.18s ease;
  --transition-slow: 0.32s ease;
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

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

/* ===================================
   LAYOUT
=================================== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.container--narrow {
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.section-pad     { padding-block: 5rem; }
.section-pad--lg { padding-block: 7rem; }
.section-pad--sm { padding-block: 3rem; }

/* ===================================
   TYPOGRAPHY
=================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.125rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: 1.0625rem; font-weight: 600; }

p { max-width: 65ch; }

/* Eyebrow — bracket notation: [ label ] */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.125rem;
}

.eyebrow::before {
  content: '[';
  margin-right: 0.45em;
  font-weight: 300;
  font-size: 1.1em;
  color: var(--teal-text);
  letter-spacing: 0;
}

.eyebrow::after {
  content: ']';
  margin-left: 0.45em;
  font-weight: 300;
  font-size: 1.1em;
  color: var(--teal-text);
  letter-spacing: 0;
}

/* On dark/teal backgrounds */
.eyebrow--light {
  color: rgba(255,255,255,0.88);
}
.eyebrow--light::before,
.eyebrow--light::after {
  color: rgba(255,255,255,0.5);
}

.section-title    { margin-bottom: 0.875rem; }
.section-subtitle { color: var(--mid); font-size: 1.05rem; max-width: 52ch; margin-bottom: 3rem; }

.text-center { text-align: center; }
.text-center p, .text-center .section-subtitle { margin-inline: auto; }

.text-white { color: var(--white); }
.text-mid   { color: var(--mid); }
.text-teal  { color: var(--teal-text); }

/* ===================================
   BUTTONS
=================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.625rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  transition: background-color var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.btn:active { transform: translateY(1px); }

/* Orange — primary CTA only */
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 6px 24px rgba(240,90,34,0.45);
  transform: translateY(-1px);
}

/* Teal filled */
.btn-secondary {
  background-color: var(--teal-deep);
  color: var(--white);
  border-color: var(--teal-deep);
  box-shadow: var(--shadow-teal);
}

.btn-secondary:hover {
  background-color: #0A5A53;
  border-color: #0A5A53;
  box-shadow: 0 6px 24px rgba(12,110,102,0.4);
  transform: translateY(-1px);
}

/* Teal outline — on light bg */
.btn-outline {
  background-color: transparent;
  color: var(--teal-text);
  border-color: var(--teal-text);
}

.btn-outline:hover {
  background-color: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
  box-shadow: var(--shadow-teal);
  transform: translateY(-1px);
}

/* White outline — on dark bg */
.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* WhatsApp */
.btn-wa {
  background-color: #22C55E;
  color: var(--white);
  border-color: #22C55E;
  box-shadow: 0 4px 18px rgba(34,197,94,0.35);
  font-size: 0.9375rem;
  padding: 0.9rem 1.875rem;
  border-radius: var(--radius-sm);
}

.btn-wa:hover {
  background-color: #16A34A;
  border-color: #16A34A;
  box-shadow: 0 6px 24px rgba(34,197,94,0.45);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 0.9375rem;
  padding: 0.9rem 2rem;
}

/* ===================================
   TOPBAR — dark with pulse indicator
=================================== */
.topbar {
  background-color: #0C6E66;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 0.575rem 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.topbar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--transition);
}

.topbar a:hover { opacity: 0.8; }

.topbar-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--white);
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(45,212,191,0.4); }
  50%       { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 5px rgba(45,212,191,0); }
}

/* ===================================
   NAVIGATION
=================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}

.nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 68px;
}

.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background-color var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--ink); background-color: var(--surface); }

.nav-links a.active { color: var(--teal-text); font-weight: 600; }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background-color: var(--teal);
  border-radius: 2px;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav-ctas .btn { font-size: 0.8rem; padding: 0.55rem 1.125rem; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  margin-left: auto;
  border-radius: var(--radius-sm);
  transition: background-color var(--transition);
}

.nav-hamburger:hover { background-color: var(--surface); }

.nav-hamburger span {
  display: block;
  height: 2px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: var(--deep);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-overlay.open { display: flex; opacity: 1; }

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.nav-overlay-links a {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.nav-overlay-links a:hover { color: var(--teal-bright); }

.nav-overlay-ctas { display: flex; flex-direction: column; align-items: center; gap: 0.875rem; }

.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1.25rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color var(--transition), background-color var(--transition);
}

.nav-overlay-close:hover { color: white; background-color: rgba(255,255,255,0.1); }

/* ===================================
   HERO — HOME (dark split layout)
=================================== */
.hero-home {
  position: relative;
  min-height: 90vh;
  display: flex;
  overflow: hidden;
  background-color: var(--white);
}

/* Background wave SVG — more visible on dark bg */
.hero-wave-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  animation: wave-drift 22s ease-in-out infinite alternate;
}

@keyframes wave-drift {
  from { transform: translateX(-1.5%) translateY(1%); }
  to   { transform: translateX(1.5%) translateY(-1%); }
}

.hero-wave-bg svg { width: 100%; height: 100%; }

/* Left content */
.hero-home-content {
  position: relative;
  z-index: 3;
  width: 55%;
  padding: 5rem 3rem 5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-home-content h1 {
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero-home-subtitle {
  font-size: 1.0625rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* Right image panel */
.hero-home-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient fade: image blends into white bg at the seam */
.hero-home-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--white) 0%,
    rgba(255,255,255,0.3) 18%,
    transparent 42%
  );
  z-index: 1;
}

/* ===================================
   HERO — INTERIOR (teal, non-home)
=================================== */
.hero-interior {
  background-color: var(--teal-deep);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-interior::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -8%;
  width: 480px;
  height: 480px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-interior::after {
  content: '';
  position: absolute;
  bottom: -55%;
  left: -4%;
  width: 340px;
  height: 340px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-interior .container { position: relative; z-index: 2; }
.hero-interior .eyebrow { color: rgba(255,255,255,0.88); }
.hero-interior .eyebrow::before,
.hero-interior .eyebrow::after { color: rgba(255,255,255,0.5); }
.hero-interior h1 { color: var(--white); }
.hero-interior p  { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 52ch; }

/* ===================================
   TRUST STRIP
=================================== */
.trust-strip {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
}

.trust-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding-block: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.625rem 2.5rem;
  border-right: 1px solid var(--border);
  flex: 1;
  min-width: 180px;
  max-width: 280px;
}

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

.trust-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.trust-item-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

/* ===================================
   CARDS
=================================== */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Left accent bar on hover */
.card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform var(--transition-slow);
}

.card:hover::after { transform: scaleY(1); }

.card:hover {
  border-color: var(--teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.card-icon {
  width: 44px;
  height: 44px;
  color: var(--teal);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card-icon svg { width: 44px; height: 44px; }

.card h3 { font-size: 1.0625rem; margin-bottom: 0.625rem; }
.card p  { color: var(--mid); font-size: 0.9375rem; line-height: 1.65; flex-grow: 1; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-text);
  transition: gap var(--transition), color var(--transition);
}

.card-link:hover { gap: 0.625rem; color: var(--teal-deep); }

/* ===================================
   SERVICES PREVIEW (home)
=================================== */
.services-preview { background-color: var(--teal-xlight); }

/* ===================================
   WHY CHOOSE US
=================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.why-item { display: flex; flex-direction: column; gap: 1rem; }

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.why-item h3 { font-size: 1.125rem; }
.why-item p  { color: var(--mid); font-size: 0.9375rem; }

/* ===================================
   URGENCY CTA SECTION
=================================== */
.cta-section {
  background-color: var(--teal-deep);
  text-align: center;
  padding-block: 5.5rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.cta-section h2   { color: var(--white); margin-bottom: 0.875rem; }
.cta-section > .container--narrow > p {
  color: rgba(255,255,255,0.9);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
  margin-inline: auto;
}

.cta-section-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================================
   ABOUT TEASER (home)
=================================== */
.about-teaser { background-color: var(--surface); }

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: center;
}

.about-teaser-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-teaser-image img { width: 100%; height: 100%; object-fit: cover; }

.about-teaser-content h2    { margin-bottom: 1rem; }
.about-teaser-content p     { color: var(--mid); }
.about-teaser-content p + p { margin-top: 1rem; }

/* ===================================
   SERVICES PAGE — ALTERNATING
   Uses flexbox order (not direction:rtl)
=================================== */
.service-section { padding-block: 5rem; }
.service-section:nth-child(even) { background-color: var(--surface); }

.service-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
}

.service-image,
.service-content { flex: 1; min-width: 0; }

/* Even sections: flip image to the right */
.service-section:nth-child(even) .service-image { order: 2; }

.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.service-image img { width: 100%; height: 100%; object-fit: cover; }

.service-content h2 { margin-bottom: 0.875rem; }
.service-content > p { color: var(--mid); margin-bottom: 2rem; }

.service-benefits { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.25rem; }

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.service-benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-benefit-check svg { width: 11px; height: 11px; color: var(--white); }
.service-benefit p { font-size: 0.9375rem; color: var(--ink); margin: 0; }

/* Add-ons */
.addons-section { background-color: var(--teal-xlight); }

.addon-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.75rem; }

.addon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--transition), color var(--transition);
}

.addon-pill:hover { border-color: var(--teal-text); color: var(--teal-text); }

.addon-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--teal);
  flex-shrink: 0;
}

/* Services bottom CTA */
.services-cta {
  background-color: var(--orange);
  text-align: center;
  padding-block: 4.5rem;
}

.services-cta h2 { color: var(--white); margin-bottom: 0.875rem; }
.services-cta p  { color: rgba(255,255,255,0.95); margin-bottom: 2rem; margin-inline: auto; }

/* ===================================
   CANDIDATES PAGE
=================================== */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.role-card {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}

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

.role-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.role-card-icon svg { width: 24px; height: 24px; }

.role-card h3 {
  font-size: 0.9375rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ink);
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.67% + 0.5rem);
  right: calc(16.67% + 0.5rem);
  height: 1.5px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.125rem;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-teal);
}

.step h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }
.step p  { font-size: 0.875rem; color: var(--mid); max-width: 22ch; margin-inline: auto; }

/* Google Form embed */
.form-embed-section { background-color: var(--teal-xlight); }

.google-form-embed {
  width: 100%;
  min-height: 600px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: block;
  background-color: var(--white);
}

.form-fallback {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--mid);
}

.form-fallback a { color: var(--teal-text); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ===================================
   CLIENTS PAGE
=================================== */
.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pain-point-card {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  border-top: 4px solid var(--orange);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.pain-point-card h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; }
.pain-point-card p  { color: var(--mid); font-size: 0.9375rem; }

/* Process — 4 column */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 0.5rem);
  right: calc(12.5% + 0.5rem);
  height: 1.5px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--teal) 100%);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
}

.process-step-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--teal) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(20,184,166,0.25);
}

.process-step h3 { font-size: 0.9375rem; font-family: var(--font-body); font-weight: 600; }
.process-step p  { font-size: 0.8375rem; color: var(--mid); max-width: 18ch; margin-inline: auto; }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.375rem; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.75rem;
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.benefit-item:hover { border-color: var(--teal-light); box-shadow: var(--shadow-sm); }

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 22px; height: 22px; color: var(--teal); }

.benefit-item h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.benefit-item p  { font-size: 0.875rem; color: var(--mid); }

/* ===================================
   CONTACT / CLIENT FORMS
=================================== */
.contact-form-section { background-color: var(--surface); }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.contact-details h2 { margin-bottom: 0.5rem; }
.contact-details > p { color: var(--mid); }

.contact-channels { display: flex; flex-direction: column; gap: 1rem; }

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem;
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-channel:hover { border-color: var(--teal-light); box-shadow: var(--shadow-xs); }

.contact-channel-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background-color: var(--teal-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-icon svg { width: 20px; height: 20px; color: var(--teal); }

.contact-channel-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.2rem;
}

.contact-channel-value { font-weight: 600; font-size: 0.9375rem; color: var(--ink); }
.contact-channel-value a { color: var(--ink); transition: color var(--transition); }
.contact-channel-value a:hover { color: var(--teal-text); }

/* Form card */
.form-card {
  background-color: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-card h3 { margin-bottom: 0.5rem; }
.form-card > p { color: var(--mid); font-size: 0.9rem; margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
  margin-bottom: 0.45rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--ink);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal-text);
  box-shadow: 0 0 0 3px rgba(10,122,112,0.14);
}

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

.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; }
.form-note { margin-top: 1rem; font-size: 0.76rem; color: var(--mid); text-align: center; }

/* ===================================
   REASSURANCE STRIP
=================================== */
.reassurance-strip {
  background-color: var(--teal-xlight);
  border-top: 1px solid rgba(20,184,166,0.2);
  border-bottom: 1px solid rgba(20,184,166,0.2);
  padding: 2rem 0;
  text-align: center;
}

.reassurance-strip p { font-size: 1rem; font-weight: 500; color: var(--ink); margin-inline: auto; }
.reassurance-strip span { color: var(--teal-text); font-weight: 700; }

/* ===================================
   CONTACT PAGE EXTRAS
=================================== */
.wa-primary-block {
  background: linear-gradient(135deg, var(--teal-xlight) 0%, #DFFAF8 100%);
  border: 1.5px solid rgba(20,184,166,0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 0;
}

.wa-primary-block h3 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 0.5rem; }
.wa-primary-block p  { font-size: 0.875rem; color: var(--mid); margin-bottom: 1.25rem; }

.wa-number-display {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.125rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

/* ===================================
   FOOTER
=================================== */
.footer { background-color: var(--deep); color: rgba(255,255,255,0.62); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  margin-bottom: 1rem;
  /* filter: brightness(0) invert(1); */
  filter: invert(1);
  opacity: 0.7;
}

.footer-about p { font-size: 0.875rem; line-height: 1.7; max-width: 28ch; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.375rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--teal-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===================================
   SCROLL ANIMATIONS
=================================== */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================================
   RESPONSIVE — TABLET ≤1024px
=================================== */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-inner { gap: 3rem; }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before { display: none; }

  .about-teaser-inner { gap: 3rem; }

  .trust-item { max-width: none; }
}

/* ===================================
   RESPONSIVE — MOBILE ≤768px
=================================== */
@media (max-width: 768px) {
  .container,
  .container--narrow { padding-inline: 1.25rem; }

  .section-pad     { padding-block: 3.5rem; }
  .section-pad--lg { padding-block: 4.5rem; }

  /* Nav */
  .nav-links, .nav-ctas { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 60px; }

  /* Hero home — stack */
  .hero-home { flex-direction: column; min-height: auto; }

  .hero-home-content {
    width: 100%;
    padding: 3rem 0 2.5rem;
    order: 2;
  }

  .hero-home-image {
    position: relative;
    width: 100%;
    height: 260px;
    clip-path: none;
    order: 1;
  }

  .hero-home-image::after {
    background: linear-gradient(180deg, transparent 40%, var(--deep) 100%);
  }

  .hero-home-actions { flex-direction: column; align-items: stretch; }
  .hero-home-actions .btn { justify-content: center; }

  /* Hero interior */
  .hero-interior { padding: 3.5rem 0 3rem; }

  /* Trust strip */
  .trust-strip-inner { gap: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); min-width: 100%; max-width: 100%; }
  .trust-item:last-child { border-bottom: none; }

  /* Cards */
  .card-grid--2,
  .card-grid--3,
  .card-grid--4 { grid-template-columns: 1fr; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* About teaser */
  .about-teaser-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-teaser-image { aspect-ratio: 3/2; }

  /* Services alternating */
  .service-inner { flex-direction: column; gap: 2rem; }
  .service-section:nth-child(even) .service-image { order: 0; }
  .service-image { aspect-ratio: 16/9; }

  /* Roles */
  .roles-grid { grid-template-columns: repeat(2, 1fr); }

  /* Steps */
  .steps-row,
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .steps-row::before,
  .process-steps::before { display: none; }
  .step, .process-step { align-items: flex-start; text-align: left; flex-direction: row; }
  .step p, .process-step p { max-width: none; margin-inline: 0; }

  /* Pain points */
  .pain-points-grid { grid-template-columns: 1fr; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.125rem; }
  h2 { font-size: 1.625rem; }
  .roles-grid { grid-template-columns: 1fr; }
  .topbar { font-size: 0.65rem; }
}
