@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ─── Brand colors (from logo) ──────────────────
   Green  #52A31E — "HR" in logo — primary action
   Blue   #3B7EC5 — figure in logo — secondary
   Gray   #6B6B6B — "PULSE" in logo — neutral/brand
   ─────────────────────────────────────────────── */
:root {
  /* Logo-matched palette */
  --green:       #52A31E;
  --green-bright:#6DC439;
  --green-dark:  #3D8016;
  --green-pale:  #EDF7E4;
  --blue:        #3B7EC5;
  --blue-dark:   #2C6AAF;
  --blue-bright: #5EA4E8;
  --blue-pale:   #EBF3FC;
  --gray-brand:  #6B6B6B;

  /* UI neutrals */
  --bg:          #F9F9F7;
  --bg-alt:      #EDEEED;
  --dot-color:   rgba(0,0,0,0.08);
  --bg-dark:     #0E1117;
  --ink:         #1A1A1A;
  --muted:       #6B6B7A;
  --subtle:      #AAAAB8;
  --line:        #D5D8D2;

  --radius:    14px;
  --radius-sm:  8px;
  --radius-xl: 24px;

  --t:         0.24s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:    0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.11);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Typography ────────────────────────────── */
h1, h2, h3 {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0;
}
h1 { font-size: clamp(44px, 7vw, 92px); font-weight: 900; }
h2 { font-size: clamp(32px, 4.5vw, 58px); font-weight: 800; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 700; }
p  { margin-top: 0; }

h1 mark, h2 mark {
  background: var(--green);
  color: #fff;
  padding: 0 8px 4px;
  border-radius: 6px;
  font-style: normal;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* ─── Progress bar ──────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--green);
  z-index: 200;
  transition: width 0.08s linear;
}

/* ─── Header ─────────────────────────────────  */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 72px);
  height: 68px;
  background: rgba(249,249,247,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
}
/* Brand name: PULSE in gray, S in green (logo style) */
.brand-pulse { color: var(--gray-brand); }
.brand-hr    { color: var(--green); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--t), background var(--t);
}
.nav a:hover { color: var(--ink); background: var(--bg-alt); }
.nav-toggle { display: none; }
.nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  background: var(--green);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(82,163,30,0.3);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.btn.primary {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
}
.btn.primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(59,126,197,0.28);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line);
}
.btn.ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn.white {
  background: #fff;
  color: var(--blue-dark);
  border: 2px solid #fff;
}
.btn.white:hover { background: var(--blue-pale); transform: translateY(-2px); }
.btn.outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn.outline-w:hover { border-color: #fff; transform: translateY(-2px); }

/* ─── Eyebrow ───────────────────────────────── */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ─── Hero ──────────────────────────────────── */
.hero { padding: 132px clamp(20px, 5vw, 72px) 80px; background: transparent; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--blue-pale);
  border: 1px solid rgba(59,126,197,0.24);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulseDot 2s ease-in-out infinite;
}
.rotator-word {
  background: var(--green);
  color: #fff;
  padding: 0 8px 4px;
  border-radius: 6px;
  display: inline-block;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.hero-text .lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-media { position: relative; }
.hero-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }

.hero-float {
  position: absolute;
  bottom: -20px; left: -28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: var(--shadow-lg);
  min-width: 210px;
}
.hero-float strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-float span { font-size: 13px; color: var(--muted); font-weight: 500; }

.hero-float-2 {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 186px;
}
.float-emoji { font-size: 22px; line-height: 1; }
.float-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); }
.float-text span   { font-size: 12px; color: var(--muted); }

.hero-bar {
  display: flex;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-bar-item { flex: 1; padding: 0 24px; border-right: 1px solid var(--line); }
.hero-bar-item:first-child { padding-left: 0; }
.hero-bar-item:last-child  { border-right: none; }
.hero-bar-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-bar-item:nth-child(even) strong { color: var(--blue); }
.hero-bar-item span { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ─── Marquee ───────────────────────────────── */
.marquee-strip {
  background: var(--blue);
  overflow: hidden;
  padding: 13px 0;
  direction: ltr;
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  direction: ltr;
}
.marquee-item { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.marquee-dot  { color: rgba(255,255,255,0.45); }
/* ─── Sections ──────────────────────────────── */
.section      { padding: 104px clamp(20px, 5vw, 72px); background: transparent; }
.section-alt  { padding: 104px clamp(20px, 5vw, 72px); background: var(--bg-alt); }
.section-dark { padding: 104px clamp(20px, 5vw, 72px); background: var(--bg-dark); }
.section-dark .eyebrow { color: var(--blue-bright); }

.section-heading { max-width: 720px; margin-bottom: 52px; }
.section-heading h2 { margin-bottom: 14px; }
.section-heading p  { color: var(--muted); font-size: 18px; line-height: 1.6; }
.section-dark .section-heading h2 { color: #fff; }
.section-dark .section-heading p  { color: rgba(255,255,255,0.65); }

/* ─── Grid ──────────────────────────────────── */
.grid  { display: grid; gap: 24px; }
.four  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two   { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ─── Feature cards ─────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: grid;
  place-items: center;
  color: var(--blue);
  margin-bottom: 22px;
}
.card-num { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: var(--blue); text-transform: uppercase; margin-bottom: 20px; }
.card h3  { margin-bottom: 10px; }
.card p   { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 0; }

/* ─── Service invert cards ──────────────────── */
.svc-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  transition: background var(--t), color var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
  cursor: default;
}
.svc-card .sc-num { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; transition: color var(--t); }
.svc-card h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 14px; transition: color var(--t); }
.svc-card p  { color: var(--muted); font-size: 16px; line-height: 1.7; transition: color var(--t); margin-bottom: 0; }
.svc-card .service-tags { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc-card .tag { padding: 5px 14px; border-radius: 100px; background: var(--bg-alt); border: 1px solid var(--line); font-size: 12px; color: var(--muted); font-weight: 500; transition: background var(--t), border-color var(--t), color var(--t); }
.svc-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(59,126,197,0.24); }
.svc-card:hover .sc-num { color: rgba(255,255,255,0.65); }
.svc-card:hover h2      { color: #fff; }
.svc-card:hover p       { color: rgba(255,255,255,0.78); }
.svc-card:hover .tag    { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.25); color: #fff; }

/* ─── Split ─────────────────────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 520px); gap: 72px; align-items: center; }
.split-text h2 { margin-bottom: 18px; }
.split-text p  { color: var(--muted); font-size: 17px; }
.section-dark .split-text h2 { color: #fff; }
.section-dark .split-text p  { color: rgba(255,255,255,0.65); }

.check-list { list-style: none; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; font-size: 15px; }
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 6px;
  margin-top: 2px;
  background: var(--green-pale)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%2352A31E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/13px no-repeat;
  border: 1px solid rgba(82,163,30,0.25);
}
.section-dark .check-list li { color: rgba(255,255,255,0.88); }
.section-dark .check-list li::before {
  background: rgba(59,126,197,0.22)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%236DC439' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/13px no-repeat;
  border-color: rgba(94,164,232,0.32);
}

.image-frame { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.image-frame img { width: 100%; height: 500px; object-fit: cover; }

/* ─── Process row ───────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; }
.process-item { padding: 40px 36px; border-right: 1px solid var(--line); transition: background var(--t); }
.process-item:last-child { border-right: none; }
.process-item:hover { background: var(--bg-alt); }
.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 20px;
}
.process-item h3 { margin-bottom: 10px; }
.process-item p  { color: var(--muted); font-size: 14px; margin-bottom: 0; }

/* ─── Stats row ─────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-item { padding: 44px 32px; border-right: 1px solid var(--line); text-align: center; }
.stat-item:last-child { border-right: none; }
.stat-num   { font-family: 'Outfit', sans-serif; font-size: 52px; font-weight: 900; line-height: 1; color: var(--green); margin-bottom: 8px; }
.stat-item:nth-child(even) .stat-num { color: var(--blue); }
.stat-label { font-size: 14px; color: var(--muted); font-weight: 500; }

/* ─── Client logo slider ────────────────────── */
.logo-strip-section {
  padding: 92px clamp(20px, 5vw, 72px);
  background: var(--bg-dark);
  overflow: hidden;
}
.logo-strip-heading {
  max-width: 680px;
  margin-bottom: 42px;
}
.logo-strip-heading h2 {
  color: #fff;
  margin-bottom: 14px;
}
.logo-strip-heading p:not(.eyebrow) {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 560px;
}
.logo-slider {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  animation: logoLoop 34s linear infinite;
  will-change: transform;
}
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}
.logo-group {
  display: flex;
  gap: 40px;
  padding-right: 40px;
}
.logo-card {
  width: clamp(190px, 18vw, 260px);
  height: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
  transition: transform var(--t), background var(--t), box-shadow var(--t);
}
.logo-card:hover {
  transform: translateY(-4px);
  background: #fff;
  box-shadow: 0 18px 42px rgba(0,0,0,0.24);
}
.logo-card img {
  max-width: 100%;
  max-height: 104px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

/* ─── TEAM CARDS ────────────────────────────── */
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-card:hover::before { transform: scaleX(1); }
.team-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 28px;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid var(--line);
  transition: border-color var(--t);
}
.team-card:hover .team-avatar { border-color: var(--green); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--green); font-weight: 700; letter-spacing: 0.02em; margin-bottom: 14px; }
.team-bio  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--blue);
  margin-top: 16px;
  transition: background var(--t), border-color var(--t);
}
.team-linkedin:hover { background: var(--blue-pale); border-color: var(--blue); }

/* ─── TESTIMONIALS ──────────────────────────── */
.testimonial-featured {
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 48px 52px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.testimonial-featured::before {
  content: '"';
  position: absolute;
  top: -20px; left: 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testimonial-featured blockquote {
  font-size: clamp(18px, 2.5vw, 24px);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.tf-author { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.tf-author .author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.tf-author .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tf-author .author-name { font-weight: 700; font-size: 15px; color: #fff; }
.tf-author .author-role { font-size: 13px; color: rgba(255,255,255,0.6); }
.tf-stars { color: var(--green-bright); font-size: 14px; letter-spacing: 2px; margin-top: 4px; }

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t), box-shadow var(--t);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--green-bright); font-size: 15px; letter-spacing: 3px; }
.testimonial-card blockquote { color: var(--muted); font-size: 15px; line-height: 1.75; flex: 1; font-style: italic; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 20px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.author-role { font-size: 13px; color: var(--muted); }

/* ─── FAQ ───────────────────────────────────── */
.faq-list { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; }
.faq-item { background: var(--bg); }
.faq-item.open { background: var(--bg-alt); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--t);
}
.faq-q:hover { color: var(--green); }
.faq-icon {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
  transition: transform var(--t), background var(--t), color var(--t);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 28px; color: var(--muted); font-size: 15px; line-height: 1.75; transition: max-height 0.4s ease, padding var(--t); }
.faq-item.open .faq-a { max-height: 300px; padding: 0 28px 26px; }

/* ─── Comparison table ──────────────────────── */
.comparison-wrap { border: 1px solid var(--line); border-radius: var(--radius-xl); overflow: hidden; }
.comparison-head { display: grid; grid-template-columns: 1.4fr 1fr 1fr; background: var(--bg-alt); border-bottom: 2px solid var(--line); }
.comp-head-cell { padding: 18px 24px; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 14px; color: var(--muted); }
.comp-head-cell.is-pulse { background: var(--green); color: #fff; text-align: center; }
.comparison-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr; border-bottom: 1px solid var(--line); transition: background var(--t); }
.comparison-row:last-child { border-bottom: none; }
.comparison-row:hover { background: var(--bg-alt); }
.comp-cell { padding: 16px 24px; font-size: 14px; color: var(--muted); border-right: 1px solid var(--line); display: flex; align-items: center; gap: 8px; }
.comp-cell:last-child { border-right: none; justify-content: center; }
.comp-cell:nth-child(2) { justify-content: center; }
.comp-cell.feat { font-weight: 600; color: var(--ink); }
.comp-cell.is-pulse { color: var(--green); font-weight: 600; justify-content: center; }
.comp-check { color: #22C55E; font-size: 18px; }
.comp-cross  { color: #EF4444; font-size: 18px; }

/* ─── CTA green ─────────────────────────────── */
.cta-blue {
  background: var(--green);
  color: #fff;
  padding: clamp(72px, 10vw, 112px) clamp(20px, 5vw, 72px);
  text-align: center;
}
.cta-blue h2  { color: #fff; margin-bottom: 16px; }
.cta-blue p   { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 36px; font-size: 17px; }
.cta-blue .actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ─── Page hero ─────────────────────────────── */
.page-hero { padding: 148px clamp(20px, 5vw, 72px) 80px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.page-hero h1    { margin-bottom: 18px; max-width: 840px; }
.page-hero .lead { color: var(--muted); font-size: clamp(17px, 2vw, 21px); max-width: 600px; margin-bottom: 0; }
.page-hero-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 440px);
  align-items: center;
  gap: clamp(32px, 6vw, 84px);
  min-height: 460px;
}
.page-hero-copy {
  position: relative;
  z-index: 1;
}
.page-hero-visual {
  position: relative;
  min-height: 300px;
}
.page-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: var(--shadow-lg);
}
.page-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(59,126,197,0.14);
  pointer-events: none;
}
.page-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hero-visual.visible .page-hero-image img {
  transform: scale(1);
}
.page-hero-symbol {
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--green);
  color: #fff;
  border: 8px solid var(--bg-alt);
  box-shadow: 0 16px 40px rgba(82,163,30,0.28);
}

/* ─── Delivery steps ────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.step-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 44px; transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
.step-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { font-family: 'Outfit', sans-serif; font-size: 56px; font-weight: 900; line-height: 1; color: var(--green-pale); margin-bottom: 20px; }
.step-tag { display: inline-block; padding: 5px 14px; border-radius: 100px; background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.step-card h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 12px; }
.step-card p  { color: var(--muted); margin-bottom: 0; }
.deliverables { list-style: none; margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.deliverables li { padding: 4px 12px; border-radius: 100px; background: var(--bg-alt); border: 1px solid var(--line); font-size: 12px; color: var(--muted); font-weight: 500; }

/* ─── Tag ───────────────────────────────────── */
.tag { padding: 5px 14px; border-radius: 100px; background: var(--bg-alt); border: 1px solid var(--line); font-size: 12px; color: var(--muted); font-weight: 500; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }

/* ─── Contact ───────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 560px); gap: 80px; align-items: start; padding: 104px clamp(20px, 5vw, 72px); }
.contact-info h2    { margin-bottom: 18px; }
.contact-info .lead { color: var(--muted); font-size: 18px; margin-bottom: 44px; }
.contact-links { display: grid; gap: 14px; }
.contact-link { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color var(--t), box-shadow var(--t); }
.contact-link:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(82,163,30,0.1); }
.contact-link-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-pale); border: 1px solid rgba(82,163,30,0.2); display: grid; place-items: center; color: var(--green); flex-shrink: 0; }
.contact-link-icon.social-icon { background: var(--blue-pale); border-color: rgba(59,126,197,0.2); color: var(--blue); }
.contact-link-arrow { margin-left: auto; color: var(--subtle); font-size: 18px; transition: color var(--t), transform var(--t); }
.contact-link:hover .contact-link-arrow { color: var(--green); transform: translate(2px, -2px); }
.cl-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--subtle); margin-bottom: 2px; }
.cl-value { font-size: 15px; font-weight: 600; color: var(--ink); }

.office-hours { margin-top: 36px; padding: 22px 24px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); }
.oh-header { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px; color: var(--ink); }
.oh-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulseDot 2s ease-in-out infinite; }
.oh-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.oh-row:last-child { border-bottom: none; }
.oh-row span:first-child { color: var(--muted); }
.oh-row span:last-child  { font-weight: 600; color: var(--ink); }

.contact-form-wrap { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 44px; display: grid; gap: 22px; }
.form-title { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.form-sub { font-size: 14px; color: var(--muted); }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); }
input, select, textarea { width: 100%; background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 13px 16px; font-family: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color var(--t), box-shadow var(--t); }
input:focus, select:focus, textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-pale); }
input::placeholder, textarea::placeholder { color: var(--subtle); }
textarea { resize: vertical; }
.contact-form-wrap .btn { width: 100%; }

.field-wrap  { position: relative; }
.char-count  { position: absolute; bottom: 10px; right: 14px; font-size: 12px; color: var(--subtle); pointer-events: none; }
.char-count.near-limit { color: var(--green-dark); }
.char-count.at-limit   { color: #EF4444; }

/* ─── Back to top ───────────────────────────── */
.back-to-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; border: none; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(82,163,30,0.35); opacity: 0; transform: translateY(16px); transition: opacity var(--t), transform var(--t), background var(--t); z-index: 50; font-size: 20px; line-height: 1; }
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ─── Toast ─────────────────────────────────── */
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(24px); background: var(--ink); color: #fff; padding: 16px 24px; border-radius: var(--radius); display: flex; align-items: center; gap: 14px; opacity: 0; pointer-events: none; z-index: 300; min-width: 300px; box-shadow: var(--shadow-lg); transition: opacity 0.3s ease, transform 0.3s ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast-icon { width: 32px; height: 32px; border-radius: 50%; background: #22C55E; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 14px; font-weight: 700; }
.toast-text span   { font-size: 13px; color: rgba(255,255,255,0.7); }
.toast-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.5); font-size: 18px; cursor: pointer; padding: 4px; line-height: 1; transition: color var(--t); }
.toast-close:hover { color: #fff; }


/* ─── Site Footer ────────────────────────────── */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding: 72px clamp(20px, 5vw, 72px) 60px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.38);
  max-width: 290px;
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.5);
  display: grid;
  place-items: center;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.footer-social:hover { background: var(--green); border-color: var(--green); color: #fff; }
.footer-contact-list a { color: inherit; transition: color var(--t); }
.footer-contact-list a:hover { color: var(--green-bright); }
.footer-col-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; display: grid; gap: 11px; }
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--green-bright); }
.footer-contact-list { list-style: none; display: grid; gap: 16px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.5;
}
.footer-contact-list svg { flex-shrink: 0; color: var(--green-bright); margin-top: 1px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.28); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─── Loading Screen ────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.35s ease 0.05s, visibility 0.35s ease 0.05s;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }

/* People icon */
.ldr-svg { width: 120px; height: auto; }
.ldr-p1, .ldr-p2, .ldr-p3 { opacity: 0; }
.ldr-p1 { animation: ldrFadeUp 0.275s ease 0.075s forwards; }
.ldr-p2 { animation: ldrFadeUp 0.275s ease 0.20s forwards; }
.ldr-p3 { animation: ldrFadeUp 0.275s ease 0.325s forwards; }
@keyframes ldrFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Wordmark */
.loader-wordmark {
  font-family: 'Outfit', 'Impact', sans-serif;
  font-weight: 900;
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1;
  opacity: 0;
  animation: ldrFadeUp 0.275s ease 0.45s forwards;
}
.lw-pulse { color: #6B6B6B; }
.lw-hr    { color: #52A31E; margin-left: 8px; }

/* ECG line */
.loader-ecg-wrap { opacity: 0; animation: ldrFadeIn 0.15s ease 0.6s forwards; }
.loader-ecg { width: 260px; display: block; }
.ecg-path {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: ldrDrawECG 0.55s ease 0.6s forwards;
}
@keyframes ldrDrawECG { to { stroke-dashoffset: 0; } }
@keyframes ldrFadeIn  { to { opacity: 1; } }

/* Tagline */
.loader-tagline {
  font-family: 'Dancing Script', cursive;
  font-size: 19px;
  color: #3B7EC5;
  opacity: 0;
  margin: 0;
  animation: ldrFadeIn 0.3s ease 0.925s forwards;
}

/* Progress bar */
.loader-bar {
  position: fixed;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--blue);
  animation: ldrBar 1.3s cubic-bezier(0.1,0,0.6,1) forwards;
}
@keyframes ldrBar { from { width: 0; } to { width: 100%; } }

/* Brand logo image (header) */
.brand-logo-img {
  height: 42px;
  width: auto;
  display: block;
}
/* Brand logo image (footer — dark bg needs a light container) */
.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 8px 14px;
}
/* Loading screen logo image */
.loader-logo-img {
  width: 260px;
  height: auto;
  display: block;
}
/* Keep SVG icon classes for loading screen animation */
.brand-icon-svg { width: 36px; height: auto; flex-shrink: 0; }
.footer-icon-svg { width: 44px; height: auto; flex-shrink: 0; }
.footer-tagline-text {
  font-family: 'Dancing Script', cursive;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-top: 2px;
}
.footer-brand-text { display: flex; flex-direction: column; }
.footer-wordmark { display: flex; align-items: baseline; }

/* ─── Reveal ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay   { transition-delay: 0.14s; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }

/* ─── Keyframes ─────────────────────────────── */
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes logoLoop { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(82,163,30,0.5); } 60% { box-shadow: 0 0 0 6px rgba(82,163,30,0); } }

/* ─── Mobile ─────────────────────────────────  */
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; align-items: center; padding: 9px 18px; background: transparent; border: 1.5px solid var(--line); border-radius: var(--radius-sm); color: var(--ink); font-family: inherit; font-weight: 600; font-size: 14px; cursor: pointer; }
  .header-actions { gap: 8px; }
  .nav-cta { display: none; }
  .nav { position: absolute; top: 68px; left: 0; right: 0; display: none; flex-direction: column; gap: 2px; padding: 12px 16px; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--line); backdrop-filter: blur(20px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .page-hero-with-media {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-hero-visual {
    max-width: 520px;
    min-height: 250px;
  }
  .page-hero-image img {
    height: 260px;
  }
  .page-hero-symbol {
    width: 76px;
    height: 76px;
    border-width: 6px;
    left: 18px;
    bottom: -18px;
  }
  .hero-float, .hero-float-2 { display: none; }
  .hero-img-wrap img { height: 300px; }
  .hero-bar { flex-direction: column; gap: 20px; }
  .hero-bar-item { border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 20px; }
  .hero-bar-item:last-child { border-bottom: none; }
  .four, .three, .steps-grid { grid-template-columns: 1fr; }
  .two { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .process-item { border-right: none; border-bottom: 1px solid var(--line); }
  .process-item:last-child { border-bottom: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .logo-strip-section {
    padding: 72px 18px;
  }
  .logo-strip-heading {
    margin-bottom: 30px;
  }
  .logo-strip-heading h2 {
    font-size: clamp(28px, 9vw, 42px);
    line-height: 1.12;
  }
  .logo-strip-heading p:not(.eyebrow) {
    font-size: 14px;
  }
  .logo-slider {
    margin-inline: -18px;
    padding: 18px 0;
  }
  .logo-track {
    animation-duration: 24s;
  }
  .logo-group {
    gap: 24px;
    padding-right: 24px;
  }
  .logo-card {
    width: 168px;
    height: 94px;
    padding: 14px 16px;
  }
  .logo-card img {
    max-height: 82px;
  }
.comparison-head, .comparison-row { grid-template-columns: 1fr 1fr 1fr; }
  .comp-cell, .comp-head-cell { padding: 12px 10px; font-size: 12px; }
  .image-frame img { height: 300px; }
  .testimonial-featured { padding: 32px 28px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
