
/* ═══════════════════════════════════════════════════════════
   TOKENS — single source of truth for all design decisions
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Brand colours */
  --olive:       #7A9A3A;
  --olive-deep:  #5C7A1E;
  --olive-mid:   #8FB040;
  --olive-light: #B5CC6A;
  --olive-pale:  #EEF4D6;
  --olive-ghost: #F7FAF0;
  --gold:        #D4871E;
  --gold-pale:   #FBF0DE;

  /* Text colours */
  --th:     #1C200E;   /* heading */
  --tb:     #3D4424;   /* body    */
  --tm:     #7A8658;   /* muted   */
  --border: #DDE8B8;
  --white:  #fff;

  /* Fonts — change here to update everywhere */
  --fh: 'Lora', Georgia, serif;
  --fb: 'Plus Jakarta Sans', sans-serif;

  /* Border-radius scale */
  --r8:  8px;  --r10: 10px; --r12: 12px;
  --r14: 14px; --r16: 16px; --r18: 18px; --r20: 20px;
}


/* ═══════════════════════════════════════════════════════════
   GLOBAL RESET
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fb);   /* all elements inherit from here */
  color: var(--tb);
  background: var(--white);
  overflow-x: hidden;
  animation: pgIn .3s ease both;
}

/* Form controls reset — inherit body font instead of browser default */
button, input, select, textarea { font-family: inherit; }

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

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


/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;

  &.scrolled { box-shadow: 0 2px 20px rgba(92,122,30,.1); }
}

.logo {
  display: flex; align-items: center; cursor: pointer;

  /* Works for both <div class="logo"> and <a class="logo"> */
  &, a& { text-decoration: none; }
}

.logo-img {
  height: 100px;
  width: auto;
  display: block;

  /* Footer variant — white logo on dark olive background */
  &.logo-img--footer {
    height: 100px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
  }
}

.nav-menu {
  display: flex; align-items: center; gap: 2px; list-style: none;

  > li {
    position: relative;

    > a, > span {
      display: flex; align-items: center; gap: 4px;
      padding: 7px 12px; border-radius: var(--r8);
      font-size: 14px; font-weight: 500; color: var(--tm);
      cursor: pointer; transition: all .18s;

      &:hover, &.on { color: var(--olive); background: var(--olive-ghost); }
      &.on { font-weight: 600; }
    }

    &:hover {
      .chev { transform: rotate(180deg); }
      .drop  { opacity: 1; pointer-events: all; transform: translateY(0); }
    }
  }
}

.chev { width: 11px; height: 11px; stroke: currentColor; stroke-width: 2.5; fill: none; transition: transform .2s; }

.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r14);
  padding: 8px; box-shadow: 0 8px 32px rgba(92,122,30,.13);
  opacity: 0; pointer-events: none; transform: translateY(-6px); transition: all .2s; z-index: 600;

  &::before {
    content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
  }

  a {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 13px; border-radius: var(--r8);
    font-size: 13px; font-weight: 500; color: var(--tb); transition: all .15s;

    &:hover { background: var(--olive-ghost); color: var(--olive); }
  }
}

.di {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--olive-pale); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;

  svg { width: 13px; height: 13px; stroke: var(--olive); stroke-width: 2; fill: none; }
}

.nav-cta { display: flex; gap: 10px; align-items: center; }

.btn-out {
  padding: 8px 18px; border-radius: var(--r8);
  font-size: 14px; font-weight: 600;
  color: var(--olive); border: 1.5px solid var(--olive);
  background: none; cursor: pointer; transition: all .2s;

  &:hover { background: var(--olive-pale); }
}

.btn-fil {
  padding: 9px 20px; border-radius: var(--r8);
  font-size: 14px; font-weight: 600;
  color: #fff; background: var(--olive); border: none;
  cursor: pointer; display: inline-flex; align-items: center;
  gap: 6px; transition: all .2s;

  &:hover { background: var(--olive-deep); transform: translateY(-1px); }
}


/* ═══════════════════════════════════════════════════════════
   LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════════ */
.sec    { padding: 88px 5%; }
.bw     { background: var(--white); }
.bg     { background: var(--olive-ghost); }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

.eyebrow {
  font-size: 21px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive-mid); margin-bottom: 11px;
}

/* Heading scale — font-family set once, inherited by h1-h3 elements naturally */
.h1 {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(28px, 4vw, 50px); line-height: 1.17;
  letter-spacing: -.4px; color: var(--th); margin-bottom: 16px;
}
.h2 {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(22px, 3vw, 36px); line-height: 1.22;
  letter-spacing: -.3px; color: var(--th); margin-bottom: 13px;
}
.h3 {
  font-family: var(--fh); font-weight: 600;
  font-size: 18px; line-height: 1.3; color: var(--th); margin-bottom: 8px;
}

.lead  { font-size: 17px; line-height: 1.75; color: var(--tb); max-width: 580px; }
.bodyt { font-size: 15px; line-height: 1.78; color: var(--tb); }
.muted { font-size: 14px; line-height: 1.75; color: var(--tm); }

/* Grid system */
.g2     { display: grid; grid-template-columns: 1fr 1fr;           gap: 22px; }
.g3     { display: grid; grid-template-columns: repeat(3, 1fr);    gap: 20px; }
.g4     { display: grid; grid-template-columns: repeat(4, 1fr);    gap: 18px; }
.splitc { display: grid; grid-template-columns: 1fr 1fr;           gap: 64px; align-items: center; }


/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */

/* Shared base for all anchor-buttons — no underline */
a.btn-out, a.btn-fil, a.btnp, a.btns, a.btnsm, a.btnw, a.btngw { text-decoration: none; }

.btnp {
  padding: 13px 28px; border-radius: var(--r10);
  font-size: 15px; font-weight: 600;
  background: var(--olive); color: #fff; border: none;
  cursor: pointer; display: inline-flex; align-items: center;
  gap: 8px; transition: all .22s;

  &:hover { background: var(--olive-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,154,58,.3); }
}

.btns {
  padding: 13px 28px; border-radius: var(--r10);
  font-size: 15px; font-weight: 600;
  background: var(--white); color: var(--olive);
  border: 1.5px solid var(--border); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all .22s;

  &:hover { border-color: var(--olive-light); background: var(--olive-pale); }
}

.btnsm {
  padding: 9px 18px; border-radius: var(--r8);
  font-size: 13px; font-weight: 600;
  background: var(--olive); color: #fff; border: none;
  cursor: pointer; display: inline-flex; align-items: center;
  gap: 6px; transition: all .2s;

  &:hover { background: var(--olive-deep); }
}

.btnw {
  padding: 13px 28px; border-radius: var(--r10);
  font-size: 15px; font-weight: 600;
  background: #fff; color: var(--olive); border: none;
  cursor: pointer; display: inline-flex; align-items: center;
  gap: 7px; transition: all .22s;

  &:hover { background: var(--olive-pale); transform: translateY(-1px); }
}

.btngw {
  padding: 12px 24px; border-radius: var(--r10);
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,.88); border: 1.5px solid rgba(255,255,255,.35);
  background: none; cursor: pointer; display: inline-flex;
  align-items: center; gap: 7px; transition: all .22s;

  &:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
}

.acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }


/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); padding: 28px; transition: all .22s;

  &:hover {
    box-shadow: 0 10px 36px rgba(92,122,30,.1);
    transform: translateY(-3px); border-color: var(--olive-light);
  }
}

.cico {
  width: 44px; height: 44px; border-radius: var(--r12);
  background: var(--olive-pale); display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;

  svg { width: 22px; height: 22px; stroke: var(--olive); stroke-width: 2; fill: none; }
}

.chip  { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--olive-pale); color: var(--olive-deep); }
.chipg { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: var(--gold-pale);  color: #7A4A08; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

.bl {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 6px;

  li {
    font-size: 13px; color: var(--tm);
    display: flex; align-items: center; gap: 8px;

    &::before {
      content: ''; width: 5px; height: 5px;
      border-radius: 50%; background: var(--olive-light); flex-shrink: 0;
    }
  }
}


/* ═══════════════════════════════════════════════════════════
   BANNER (inner-page hero)
   ═══════════════════════════════════════════════════════════ */
.banner {
  padding: 120px 5% 64px;
  background: var(--olive-ghost); position: relative; overflow: hidden;

  &::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(181,204,106,.16) 0%, transparent 70%);
    pointer-events: none;
  }
}

.ban-in {
  position: relative; z-index: 1; max-width: 700px;

  p { font-size: 17px; line-height: 1.75; color: var(--tb); max-width: 580px; margin-top: 14px; }
}

.bc {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--tm); margin-bottom: 14px; flex-wrap: wrap;

  a { color: var(--olive); cursor: pointer; font-weight: 500; }
}


/* ═══════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════ */
.ctastrip {
  background: var(--olive); padding: 72px 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 44px; flex-wrap: wrap;

  h2 {
    font-family: var(--fh);
    font-size: clamp(20px, 2.8vw, 32px); font-weight: 600;
    color: #fff; line-height: 1.22; margin-bottom: 10px; letter-spacing: -.3px;
  }

  p { font-size: 16px; color: rgba(255,255,255,.68); line-height: 1.65; max-width: 500px; }
}

.ctabtns { display: flex; gap: 13px; flex-wrap: wrap; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--olive-deep); padding: 60px 5% 28px;
}

.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }

.fl-logo { display: flex; align-items: center; margin-bottom: 13px; }

.ft { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.75; max-width: 255px; }
.fa {
  font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.9; margin-top: 14px;

  a { color: rgba(255,255,255,.35); }
}

.fch { font-size: 10px; font-weight: 700; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }

.fls {
  list-style: none; display: flex; flex-direction: column; gap: 8px;

  a {
    font-size: 13px; color: rgba(255,255,255,.38); transition: color .2s; cursor: pointer;

    &:hover { color: rgba(255,255,255,.8); }
  }
}

.fbot {
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
}

.fcp { font-size: 12px; color: rgba(255,255,255,.22); }

.fsocs { display: flex; gap: 8px; }

.fsoc {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(255,255,255,.07); display: flex;
  align-items: center; justify-content: center;
  transition: background .2s; cursor: pointer;

  /* Works for both <div class="fsoc"> and <a class="fsoc"> */
  &, a& { text-decoration: none; }
  a& { display: flex; }

  &:hover { background: rgba(255,255,255,.15); }

  svg { width: 13px; height: 13px; fill: rgba(255,255,255,.42); }
}


/* ═══════════════════════════════════════════════════════════
   HOME HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  padding: 130px 5% 84px; background: var(--olive-ghost);
  position: relative; overflow: hidden;

  &::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(181,204,106,.18) 0%, transparent 70%);
    pointer-events: none;
  }

  &::after {
    content: ''; position: absolute; bottom: -60px; left: 36%;
    width: 320px; height: 320px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,135,30,.07) 0%, transparent 70%);
    pointer-events: none;
  }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 5px 14px 5px 8px; border-radius: 100px; margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(92,122,30,.08);
}

.pill-ch {
  background: var(--olive); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: 100px; letter-spacing: .06em; text-transform: uppercase;
}

.pill span { font-size: 13px; color: var(--tb); font-weight: 500; }

.htitle {
  font-family: var(--fh); font-weight: 600;
  font-size: clamp(30px, 3.8vw, 50px); line-height: 1.2;
  letter-spacing: -.4px; color: var(--th); margin-bottom: 18px;

  em { font-style: italic; color: var(--olive); }
}

.hsub { font-size: 16px; line-height: 1.78; color: var(--tb); max-width: 460px; }

.hstats {
  display: flex; gap: 28px; margin-top: 36px;
  padding-top: 32px; border-top: 1px solid var(--border); flex-wrap: wrap;
}

.sn { font-family: var(--fh); font-size: 28px; font-weight: 600; color: var(--olive); line-height: 1; }
.sl { font-size: 12px; color: var(--tm); margin-top: 4px; }


/* ═══════════════════════════════════════════════════════════
   DASHBOARD CARD (home page)
   ═══════════════════════════════════════════════════════════ */
.dc {
  background: var(--white); border-radius: var(--r18);
  border: 1px solid var(--border); box-shadow: 0 8px 40px rgba(92,122,30,.09);
  overflow: hidden; animation: pgIn .6s ease .15s both;
}

.dc-h {
  background: var(--olive); padding: 17px 22px;
  display: flex; align-items: center; justify-content: space-between;
}

.dc-ht { font-size: 13px; font-weight: 600; color: #fff; }

.dc-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.15); padding: 3px 9px;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}

.ld { width: 6px; height: 6px; border-radius: 50%; background: #C8F57A; animation: blink 1.6s infinite; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.dc-b { padding: 22px; }

.dm { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }

.dmt {
  background: var(--olive-ghost); border-radius: var(--r10);
  padding: 13px 8px; text-align: center; border: 1px solid var(--border);
}

.dv      { font-family: var(--fh); font-size: 21px; font-weight: 600; color: var(--olive-deep); line-height: 1; }
.dv.g    { color: var(--gold); }
.dl      { font-size: 10px; color: var(--tm); margin-top: 3px; }
.plbl    { font-size: 11px; color: var(--tm); margin-bottom: 10px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }
.pr      { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.pn      { font-size: 12px; color: var(--tb); width: 76px; flex-shrink: 0; }
.pt      { flex: 1; height: 6px; background: var(--olive-pale); border-radius: 100px; }
.pf      { height: 100%; border-radius: 100px; background: var(--olive-mid); }
.pf.g    { background: var(--gold); }
.pp      { font-size: 12px; color: var(--tm); font-weight: 600; width: 30px; text-align: right; }
.synct {
  margin-top: 14px; padding: 9px 13px; background: var(--gold-pale);
  border-radius: 8px; border: 1px solid #EDD49A;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #7A4A08; font-weight: 500;
}


/* ═══════════════════════════════════════════════════════════
   WORKDAY FLOW
   ═══════════════════════════════════════════════════════════ */
.flow {
  display: flex; align-items: center;
  background: var(--white); border-radius: 11px;
  padding: 16px; border: 1px solid var(--border);
}

.fn   { flex: 1; text-align: center; }
.fi   { font-size: 15px; margin-bottom: 5px; }

.flbl {
  font-size: 11px; font-weight: 600; padding: 8px 5px;
  border-radius: 7px; background: var(--olive-ghost);
  border: 1px solid var(--border); color: var(--tb);

  &.on { background: var(--olive); color: #fff; border-color: var(--olive); }
}

.farr { color: var(--border); font-size: 14px; padding: 0 3px; flex-shrink: 0; margin-top: -10px; }


/* ═══════════════════════════════════════════════════════════
   WD GRID (Workday feature grid)
   ═══════════════════════════════════════════════════════════ */
.wdg { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 18px; }

.wdc {
  border: 1px solid var(--border); border-radius: var(--r16);
  padding: 28px; background: var(--white); transition: all .22s;

  &:hover {
    box-shadow: 0 10px 36px rgba(92,122,30,.1);
    transform: translateY(-3px); border-color: var(--olive-light);
  }

  &.tall {
    background: var(--olive-ghost); border-color: rgba(143,176,64,.3);
    grid-row: span 2; display: flex; flex-direction: column;
  }
}

.wdi {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--olive-pale); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; flex-shrink: 0;

  svg { width: 20px; height: 20px; stroke: var(--olive); stroke-width: 2; fill: none; }
}


/* ═══════════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════════ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); position: relative;

  &::before {
    content: ''; position: absolute; top: 23px;
    left: 12.5%; right: 12.5%; height: 1px; background: var(--border);
  }
}

.step {
  text-align: center; padding: 0 14px;

  &:last-child .stepc { border-color: var(--gold); color: var(--gold); }
}

.stepc {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--olive-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
  font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--olive);
}

.stept { font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--th); margin-bottom: 7px; }
.stepd { font-size: 13px; color: var(--tm); line-height: 1.7; }


/* ═══════════════════════════════════════════════════════════
   SERVICE LIST ITEMS
   ═══════════════════════════════════════════════════════════ */
.svci {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border: 1px solid var(--border);
  border-radius: var(--r14); background: var(--white);
  cursor: pointer; transition: all .22s; margin-bottom: 12px;

  &:hover {
    box-shadow: 0 8px 28px rgba(92,122,30,.1);
    transform: translateX(4px); border-color: var(--olive-light);
  }
}

/* svci used as an <a> tag */
a.svci {
  text-decoration: none; color: inherit;

  &:hover {
    box-shadow: 0 8px 28px rgba(92,122,30,.1);
    transform: translateX(4px); border-color: var(--olive-light);
  }
}

.svci-l   { display: flex; align-items: center; gap: 18px; }

.svci-ico {
  width: 48px; height: 48px; border-radius: var(--r12);
  background: var(--olive-pale); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;

  svg { width: 24px; height: 24px; stroke: var(--olive); stroke-width: 2; fill: none; }
}

.svci-t { font-family: var(--fh); font-size: 18px; font-weight: 600; color: var(--th); }
.svci-d { font-size: 13px; color: var(--tm); margin-top: 3px; }

.svci-arr {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--olive-pale); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;

  svg { width: 16px; height: 16px; stroke: var(--olive); stroke-width: 2.5; fill: none; }
}


/* ═══════════════════════════════════════════════════════════
   SERVICE INNER PAGE HERO
   ═══════════════════════════════════════════════════════════ */
.svchero {
  padding: 120px 5% 0; background: var(--olive-ghost);
  position: relative; overflow: hidden;

  &::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(181,204,106,.16) 0%, transparent 70%);
    pointer-events: none;
  }
}

.svchero-g { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: end; position: relative; z-index: 1; }
.svchero-t { padding-bottom: 64px; }
.svchero-c {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r20) var(--r20) 0 0; padding: 28px;
  box-shadow: 0 -4px 32px rgba(92,122,30,.08);
}


/* ═══════════════════════════════════════════════════════════
   SERVICE DETAIL SECTIONS
   ═══════════════════════════════════════════════════════════ */
.sdet {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start; padding: 72px 5%;
  border-bottom: 1px solid var(--border);

  &:nth-child(even) { background: var(--olive-ghost); }
}

.snum { font-size: 21px; font-weight: 700; color: var(--olive-light); letter-spacing: .1em; margin-bottom: 10px; }

.statpanel {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); overflow: hidden; box-shadow: 0 4px 24px rgba(92,122,30,.07);
}

.sph  { background: var(--olive); padding: 14px 20px; }
.spht { font-size: 13px; font-weight: 600; color: #fff; }

.sprow {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-bottom: 1px solid var(--border);

  &:last-child { border-bottom: none; }
}

.spdot       { width: 8px; height: 8px; border-radius: 50%; background: var(--olive-mid); flex-shrink: 0; }
.spdot.g     { background: var(--gold); }
.splbl       { font-size: 13px; color: var(--tb); flex: 1; }
.spval       { font-size: 13px; font-weight: 600; color: var(--th); }
.spchip      { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: var(--olive-pale); color: var(--olive-deep); }
.spchip.g    { background: var(--gold-pale); color: #7A4A08; }

.feats { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }

.feat { display: flex; gap: 12px; align-items: flex-start; }

.fchk {
  width: 24px; height: 24px; border-radius: 7px;
  background: var(--olive-pale); display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;

  svg { width: 12px; height: 12px; stroke: var(--olive); stroke-width: 2.5; fill: none; }
}

/* .ft is also used for footer text — careful with naming */
.ft  { font-size: 13px; color: var(--th); line-height: 1.75; max-width: 255px; }
.fd  { font-size: 13px; color: var(--tm); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════
   WORKDAY INTEGRATION STEPS
   ═══════════════════════════════════════════════════════════ */
.int-steps { display: flex; flex-direction: column; gap: 0; }

.int-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--border);

  &:last-child { border-bottom: none; }
}

.int-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--olive); display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 700;
  color: #fff; flex-shrink: 0; margin-top: 1px;
}

.int-t { font-size: 14px; font-weight: 600; color: var(--th); margin-bottom: 2px; }
.int-d { font-size: 12px; color: var(--tm); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════
   ABOUT — TIMELINE, TEAM, VALUES
   ═══════════════════════════════════════════════════════════ */
.tl {
  position: relative; padding-left: 28px;

  &::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px; background: var(--border);
  }
}

.tli {
  position: relative; margin-bottom: 30px;

  &::before {
    content: ''; position: absolute; left: -34px; top: 4px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--olive); border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--olive-light);
  }
}

.tly { font-size: 11px; font-weight: 700; color: var(--olive); letter-spacing: .06em; margin-bottom: 3px; }
.tlt { font-size: 15px; font-weight: 600; color: var(--th); margin-bottom: 3px; }
.tld { font-size: 13px; color: var(--tm); line-height: 1.65; }

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

.teamc { text-align: center; padding: 24px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r16); }

.avt {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--olive-pale); border: 3px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 13px;
  font-family: var(--fh); font-size: 18px; font-weight: 600; color: var(--olive-deep);
}

.tn { font-size: 15px; font-weight: 600; color: var(--th); margin-bottom: 3px; }
.tr { font-size: 13px; color: var(--tm); }

.valg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.valc { background: var(--olive-ghost); border: 1px solid var(--border); border-radius: var(--r16); padding: 26px; }

.vali { font-size: 30px; margin-bottom: 12px; }
.valt { font-family: var(--fh); font-size: 16px; font-weight: 600; color: var(--th); margin-bottom: 7px; }
.vald { font-size: 14px; line-height: 1.75; color: var(--tb); }


/* ═══════════════════════════════════════════════════════════
   CAREERS
   ═══════════════════════════════════════════════════════════ */
.jobg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.jobc {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r14); padding: 26px; transition: all .22s;

  &:hover {
    box-shadow: 0 10px 32px rgba(92,122,30,.1);
    transform: translateY(-3px); border-color: var(--olive-light);
  }
}

.jdept { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 7px; }
.jtit  { font-family: var(--fh); font-size: 17px; font-weight: 600; color: var(--th); margin-bottom: 8px; line-height: 1.3; }
.jmet  { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.jtag  { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 100px; background: var(--olive-pale); color: var(--olive-deep); }
.jdesc { font-size: 13px; color: var(--tm); line-height: 1.65; margin-bottom: 18px; }

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

.perkc { background: var(--olive-ghost); border: 1px solid var(--border); border-radius: var(--r14); padding: 22px; text-align: center; }

.perki { font-size: 28px; margin-bottom: 11px; }
.perkt { font-size: 14px; font-weight: 600; color: var(--th); margin-bottom: 5px; }
.perkd { font-size: 13px; color: var(--tm); line-height: 1.6; }


/* ═══════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════ */
.blogg { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.blogl { display: flex; flex-direction: column; gap: 26px; }

.blgc {
  display: grid; grid-template-columns: 160px 1fr;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r16); overflow: hidden; transition: all .22s;

  &:hover { box-shadow: 0 10px 32px rgba(92,122,30,.1); transform: translateY(-3px); }
}

.blgimg { background: var(--olive-pale); display: flex; align-items: center; justify-content: center; font-size: 40px; }
.blgcon { padding: 20px; }

.blgcat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 7px; }
.blgt   { font-family: var(--fh); font-size: 16px; font-weight: 600; color: var(--th); margin-bottom: 7px; line-height: 1.32; }
.blgex  { font-size: 13px; color: var(--tm); line-height: 1.7; margin-bottom: 10px; }
.blgm   { font-size: 12px; color: var(--tm); }

.rdlnk {
  font-size: 13px; font-weight: 600; color: var(--olive);
  margin-top: 10px; display: inline-flex; align-items: center;
  gap: 4px; cursor: pointer;

  &:hover { color: var(--olive-deep); }
}

.sbar  { display: flex; flex-direction: column; gap: 22px; }
.sbbox { background: var(--olive-ghost); border: 1px solid var(--border); border-radius: var(--r14); padding: 20px; }
.sbbt  { font-size: 14px; font-weight: 700; color: var(--th); margin-bottom: 13px; }

.topc { display: flex; flex-wrap: wrap; gap: 7px; }

.topt {
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 100px; background: var(--white);
  border: 1px solid var(--border); color: var(--tb);
  cursor: pointer; transition: all .18s;

  &:hover { background: var(--olive-pale); border-color: var(--olive-light); color: var(--olive); }
}

.rpost {
  display: flex; gap: 11px; padding: 10px 0;
  border-bottom: 1px solid var(--border);

  &:last-child { border-bottom: none; }
}

.rposti { width: 44px; height: 44px; border-radius: var(--r8); background: var(--olive-pale); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }

.rpostt {
  font-size: 13px; font-weight: 600; color: var(--th);
  line-height: 1.35; cursor: pointer; margin-bottom: 2px;

  &:hover { color: var(--olive); }
}

.rpostd { font-size: 11px; color: var(--tm); }

.sbnews {
  background: var(--olive); border-radius: var(--r14); padding: 20px;

  .sbbt { color: #fff; }
  p     { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 13px; line-height: 1.6; }

  input[type=email] {
    width: 100%; padding: 10px 13px;
    border-radius: var(--r8); border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.15); color: #fff;
    font-size: 13px; outline: none; margin-bottom: 10px;

    &::placeholder { color: rgba(255,255,255,.5); }
  }
}


/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contg { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }

.cilist { display: flex; flex-direction: column; gap: 20px; margin-top: 26px; }

.cii { display: flex; gap: 14px; align-items: flex-start; }

.ciico {
  width: 40px; height: 40px; border-radius: var(--r10);
  background: var(--olive-pale); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;

  svg { width: 18px; height: 18px; stroke: var(--olive); stroke-width: 2; fill: none; }
}

.cil { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: 3px; }
.civ { font-size: 14px; color: var(--tb); line-height: 1.6; }

.cform {
  background: var(--olive-ghost); border: 1px solid var(--border);
  border-radius: var(--r20); padding: 36px;
}

.cft { font-family: var(--fh); font-size: 22px; font-weight: 600; color: var(--th); margin-bottom: 24px; }

.fr  { margin-bottom: 16px; }
.fr2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }

label { display: block; font-size: 13px; font-weight: 600; color: var(--tb); margin-bottom: 5px; }

input[type=text], input[type=email], select, textarea {
  width: 100%; padding: 11px 14px; border-radius: var(--r8);
  border: 1px solid var(--border); background: var(--white);
  font-size: 14px; color: var(--tb); outline: none; transition: border-color .2s;

  &:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(122,154,58,.1); }
}

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

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8658' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}

.bsub {
  width: 100%; padding: 13px; border-radius: var(--r10);
  font-size: 15px; font-weight: 600;
  background: var(--olive); color: #fff; border: none;
  cursor: pointer; display: flex; align-items: center;
  justify-content: center; gap: 8px; transition: all .22s; margin-top: 4px;

  &:hover { background: var(--olive-deep); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(122,154,58,.3); }
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .hero-grid, .splitc, .sdet, .contg, .wdpgrid, .svchero-g { grid-template-columns: 1fr; }
  .wdg, .g3    { grid-template-columns: 1fr 1fr; }
  .wdc.tall    { grid-row: auto; }
  .g4, .teamg, .perkg { grid-template-columns: 1fr 1fr; }
  .fg          { grid-template-columns: 1fr 1fr; }
  nav          { padding: 0 4%; }
  .nav-menu    { display: none; }
  .blogg       { grid-template-columns: 1fr; }
  .sdet        { padding: 48px 5%; }
}

@media (max-width: 600px) {
  .g2, .g3, .wdg, .valg, .jobg          { grid-template-columns: 1fr; }
  .g4, .teamg, .perkg, .steps           { grid-template-columns: 1fr 1fr; }
  .fg                                    { grid-template-columns: 1fr; }
  .ctastrip                              { flex-direction: column; }
  .sec                                   { padding: 56px 5%; }
  .hero                                  { padding: 100px 5% 56px; }
  .banner                                { padding: 100px 5% 48px; }
  .fr2                                   { grid-template-columns: 1fr; }
  .blgc                                  { grid-template-columns: 1fr; }
  .blgimg                                { height: 120px; }
}
