:root {
  --bg: #ffffff;
  --bg-alt: #f7faf5;
  --bg-dark: #1a1a1a;
  --text: #333333;
  --text-light: #ffffff;
  --muted: #58595b;
  --muted2: #808285;
  --border: #e2e8f0;
  --border-light: rgba(122,182,72,.15);

  --primary: #7AB648;
  --primary-dark: #5A9A32;
  --primary-light: #8DC63F;
  --primary-ultra-light: rgba(122,182,72,.08);
  --primary-shadow: rgba(122,182,72,.25);

  --accent-grey: #58595b;
  --accent-dark: #333333;

  --card: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --shadow-primary: 0 8px 30px rgba(122,182,72,.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1200px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

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

/* ====================== HEADER ====================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: var(--transition);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  height: 48px;
  width: auto;
}
.navLinks {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navLinks > a,
.navDropdown > .navDropBtn {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.navLinks > a:hover,
.navDropdown:hover > .navDropBtn {
  color: var(--primary-dark);
  background: var(--primary-ultra-light);
}

.navDropdown {
  position: relative;
}
.navDropBtn svg {
  width: 12px;
  height: 12px;
  transition: transform .2s ease;
}
.navDropdown:hover .navDropBtn svg {
  transform: rotate(180deg);
}
.dropdownMenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 200;
}
.navDropdown:hover .dropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdownMenu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
}
.dropdownMenu a:hover {
  background: var(--primary-ultra-light);
  color: var(--primary-dark);
}
.dropdownMenu .dropLabel {
  padding: 8px 14px 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted2);
}

.navCtas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  font-family: inherit;
  text-decoration: none;
}
.btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(122,182,72,.1);
}
.btn.primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: #fff;
  border: none;
  box-shadow: var(--shadow-primary);
}
.btn.primary:hover {
  box-shadow: 0 12px 36px rgba(122,182,72,.35);
  transform: translateY(-2px);
}
.btn.outline {
  border: 2px solid var(--primary);
  color: var(--primary-dark);
  background: transparent;
}
.btn.outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn.ghost {
  background: var(--primary-ultra-light);
  border: 1px solid var(--border-light);
  color: var(--primary-dark);
}
.btn.ghost:hover {
  background: rgba(122,182,72,.15);
}
.btn.sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn.lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius);
}

/* Mobile */
.mobileToggle {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobileToggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: var(--transition);
}
@media (max-width: 1024px) {
  .navLinks, .navCtas .btn.ghost { display: none; }
  .mobileToggle { display: block; }
}

.mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  top: 76px;
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  padding: 24px;
}
.mobileMenu.open { display: block; }
.mobileMenu a {
  display: block;
  padding: 14px 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.mobileMenu a:hover { color: var(--primary-dark); }
.mobileMenu .mobileGroup {
  padding: 8px 0;
}
.mobileMenu .mobileGroupTitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted2);
  padding: 16px 0 4px;
}
.mobileMenu .mobileGroupTitle + a {
  border-top: none;
}
.mobileCta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ====================== SECTIONS ====================== */
.section { padding: 100px 0; }
.section.sm { padding: 64px 0; }
.section.xs { padding: 40px 0; }
.section.alt { background: var(--bg-alt); }
.section.dark {
  background: var(--bg-dark);
  color: var(--text-light);
}
.section.dark .muted,
.section.dark p { color: rgba(255,255,255,.7); }

/* ====================== HERO ====================== */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero.with-bg {
  background: linear-gradient(135deg, #f0f7ec 0%, #fff 50%, #f5f8f3 100%);
}
.hero .heroContent {
  max-width: 680px;
}
.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .heroGrid { grid-template-columns: 1fr; gap: 32px; }
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-ultra-light);
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(122,182,72,.15);
}
.h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}
p, .p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.btnRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Hero image */
.heroImage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.heroImage img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.heroImage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,182,72,.1), transparent);
  pointer-events: none;
}

/* ====================== TRUST STRIP ====================== */
.trustStrip {
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trustRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trustTitle {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted2);
}
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.badge svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

/* ====================== GRID LAYOUTS ====================== */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .grid2 { grid-template-columns: 1fr; gap: 32px; }
  .grid4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid3 { grid-template-columns: 1fr; }
  .grid4 { grid-template-columns: 1fr; }
}

.sectionHeader {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sectionHeader .kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

/* ====================== CARDS ====================== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card .cardIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
}
.card .cardIcon svg {
  width: 24px;
  height: 24px;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent-dark);
}
.card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}
.card .cardLink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary-dark);
  transition: var(--transition);
}
.card .cardLink:hover {
  gap: 10px;
  color: var(--primary);
}

.cardImg {
  overflow: hidden;
  padding: 0;
}
.cardImg .cardImage {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.cardImg h3,
.cardImg p,
.cardImg .cardLink {
  padding-left: 28px;
  padding-right: 28px;
}
.cardImg h3 {
  padding-top: 20px;
  padding-bottom: 0;
}
.cardImg p {
  padding-top: 8px;
  padding-bottom: 0;
}
.cardImg .cardLink {
  padding-bottom: 28px;
  margin-top: 16px;
  display: inline-flex;
}

/* ====================== CAREERS OUR VALUES ====================== */
.ourValues .valuesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 32px;
}
.valueCard {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.valueCard:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.valueCardIcon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}
.valueCardHr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 12px 0 16px;
}
.valueCard h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 4px;
}
.valueTagline {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 16px;
}
.valueList {
  list-style: none;
  padding: 0;
  margin: 0;
}
.valueList li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 0;
}
.valueList li:last-child { margin-bottom: 0; }
.valueList strong {
  color: var(--accent-dark);
  font-weight: 600;
}

/* ====================== STATS ====================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  text-align: center;
  padding: 24px;
}
.statNumber {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.statLabel {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ====================== FEATURE BLOCK ====================== */
.featureBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featureBlock.reverse { direction: rtl; }
.featureBlock.reverse > * { direction: ltr; }
@media (max-width: 1024px) {
  .featureBlock, .featureBlock.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
}
.featureImage {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.featureImage img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.featureList {
  margin-top: 20px;
}
.featureList li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--muted);
}
.featureList li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ====================== CTA BAND ====================== */
.ctaBand {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ctaBand::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.ctaBand::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.ctaBand * { position: relative; z-index: 1; }
.ctaBand .h2 { color: #fff; }
.ctaBand p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto; }
.ctaBand .btnRow { justify-content: center; margin-top: 28px; }
.ctaBand .btn.primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.ctaBand .btn.primary:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.ctaBand .btn:not(.primary) {
  border-color: rgba(255,255,255,.3);
  color: #fff;
  background: transparent;
}

/* ====================== HERO FORM CARD ====================== */
.heroCard {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.heroCard h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.heroCard p {
  font-size: 13px;
  margin-bottom: 16px;
}
.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.input, .textarea {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
  background: var(--bg-alt);
}
.input:focus, .textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-ultra-light);
  background: #fff;
}
.textarea { resize: vertical; min-height: 100px; }
.fineprint {
  font-size: 12px;
  color: var(--muted2);
  margin-top: 8px;
}

/* ====================== FAQ ====================== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faqItem {
  border-bottom: 1px solid var(--border);
}
.faqBtn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: var(--transition);
}
.faqBtn:hover { color: var(--primary-dark); }
.faqChev {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faqChev svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
  transition: transform .2s;
}
.faqItem.open .faqChev {
  background: var(--primary);
}
.faqItem.open .faqChev svg {
  color: #fff;
  transform: rotate(180deg);
}
.faqPanel {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* ====================== BREADCRUMBS ====================== */
.breadcrumbs {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 16px;
}
.breadcrumbs a {
  color: var(--muted);
  font-weight: 600;
}
.breadcrumbs a:hover { color: var(--primary-dark); }
.breadcrumbs span { color: var(--primary-dark); font-weight: 600; }

/* ====================== FOOTER ====================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}
.footerGrid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footerGrid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footerGrid { grid-template-columns: 1fr; }
}
.footerBrand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footerBrand img {
  height: 40px;
  filter: brightness(0) invert(1);
}
.footerDesc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,.5);
}
.footColTitle {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footCol a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: var(--transition);
}
.footCol a:hover { color: var(--primary-light); }
.footerGroup {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footerGroupLabel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.footerBottom {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footerBottom a { color: rgba(255,255,255,.4); transition: var(--transition); }
.footerBottom a:hover { color: var(--primary-light); }

/* ====================== PAGE HEADER (inner pages) ====================== */
.pageHeader {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f0f7ec 0%, #fff 60%, #f7faf5 100%);
  position: relative;
  overflow: hidden;
}
.pageHeader::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(122,182,72,.06);
}
.pageHeader .h1 { margin-bottom: 12px; }
.pageHeader .subtitle { margin-bottom: 24px; }

/* ====================== PRICING ====================== */
.pricingCard {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: var(--transition);
}
.pricingCard.featured {
  border-color: var(--primary);
  position: relative;
}
.pricingCard.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.pricingCard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pricingCard h3 { font-size: 20px; margin-bottom: 8px; }
.priceAmount {
  font-size: 40px;
  font-weight: 800;
  color: var(--primary);
  margin: 16px 0;
}
.priceAmount span { font-size: 16px; color: var(--muted); font-weight: 500; }
.pricingFeatures {
  text-align: left;
  margin: 24px 0;
}
.pricingFeatures li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}
.pricingFeatures li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ====================== TESTIMONIAL ====================== */
.testimonial {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-size: 80px;
  line-height: 1;
  color: var(--primary-ultra-light);
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
}
.testimonial blockquote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonialAuthor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonialAuthor img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonialAuthor strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}
.testimonialAuthor span {
  font-size: 13px;
  color: var(--muted2);
}

/* ====================== CONTACT CARDS ====================== */
.contactCard {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.contactCard svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.contactCard h3 { font-size: 16px; margin-bottom: 6px; }
.contactCard p { font-size: 14px; }

/* ====================== BLOG CARDS ====================== */
.blogCard .blogImage {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.blogCard .blogContent {
  padding: 20px;
}
.blogCard .blogMeta {
  font-size: 12px;
  color: var(--muted2);
  margin-bottom: 8px;
}
.blogCard h3 { font-size: 16px; margin-bottom: 8px; }

/* ====================== UTILITIES ====================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 640px; }
.max-w-lg { max-width: 800px; }

.scroll-mt { scroll-margin-top: 100px; }

/* Accent underline */
.accent-underline {
  position: relative;
  display: inline;
}
.accent-underline::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(122,182,72,.2);
  border-radius: 4px;
  z-index: -1;
}

/* Icon circle */
.iconCircle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--primary-ultra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.iconCircle svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

/* Animated gradient border */
.gradientBorder {
  position: relative;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}
.gradientBorder > * {
  background: #fff;
  border-radius: calc(var(--radius) - 2px);
}

/* ====================== JOB CARDS ====================== */
.jobList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.jobCard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: var(--transition);
}
.jobCard:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.jobInfo {
  flex: 1;
  min-width: 0;
}
.jobTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.jobChevrons {
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
}
.jobDesc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jobCard .btn {
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .jobCard {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====================== JOBS PAGE ====================== */
.jobsPage {
  padding: 32px 0 80px;
  min-height: calc(100vh - 76px);
  background: var(--bg-alt);
}
.jobsSearchBar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 8px 8px 20px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto 24px;
}
.jobsSearchWrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.jobsSearchIcon {
  width: 20px;
  height: 20px;
  color: var(--muted2);
  flex-shrink: 0;
}
.jobsSearchInput {
  border: none;
  outline: none;
  background: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  width: 100%;
}
.jobsSearchInput::placeholder {
  color: var(--muted2);
}
.jobsCount {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.jobsLayout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1024px) {
  .jobsLayout { grid-template-columns: 1fr; }
  .jobsDetail { order: -1; }
}

/* Sidebar list */
.jobsSidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding-right: 4px;
}
.jobsSidebarCard {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  cursor: pointer;
  transition: var(--transition);
}
.jobsSidebarCard:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow);
}
.jobsSidebarCard.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-shadow);
}
.jobsSidebarTitle {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.jobsSidebarBadges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.jobsBadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 3px 10px;
  background: var(--bg-alt);
  border-radius: 999px;
}
.jobsBadge.active-badge {
  color: var(--primary-dark);
  background: var(--primary-ultra-light);
}
.jobsSidebarExcerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jobsSidebarDate {
  font-size: 12px;
  color: var(--muted2);
}
.jobsSidebarEmpty {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
  font-size: 14px;
}

/* Detail panel */
.jobsDetail {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  position: sticky;
  top: 108px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.jobsDetailEmpty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted2);
}
.jobsDetailEmpty svg {
  color: var(--border);
  margin-bottom: 16px;
}
.jobsDetailEmpty p {
  font-size: 15px;
}
.jobsDetailTitle {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}
.jobsDetailMeta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.jobsDetailDate {
  font-size: 13px;
  color: var(--muted);
}
.jobsDetailContent .btn.primary {
  margin-bottom: 28px;
}
.jobsDetailBody {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.jobsDetailBody h1,
.jobsDetailBody h2,
.jobsDetailBody h3 {
  color: var(--accent-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}
.jobsDetailBody h1 { font-size: 22px; }
.jobsDetailBody h2 { font-size: 18px; }
.jobsDetailBody h3 { font-size: 16px; }
.jobsDetailBody p {
  margin-bottom: 12px;
}
.jobsDetailBody ul,
.jobsDetailBody ol {
  padding-left: 20px;
  margin-bottom: 12px;
  list-style: disc;
}
.jobsDetailBody ol { list-style: decimal; }
.jobsDetailBody li {
  padding: 3px 0;
  font-size: 14px;
  line-height: 1.7;
}
.jobsDetailBody strong,
.jobsDetailBody b {
  color: var(--accent-dark);
  font-weight: 700;
}
@media (max-width: 768px) {
  .jobsDetail {
    position: static;
    max-height: none;
    padding: 24px;
  }
  .jobsSearchBar {
    flex-direction: column;
    padding: 12px;
  }
  .jobsSearchBar .btn {
    width: 100%;
  }
}

/* ====================== MAUTIC FORM OVERRIDES ====================== */
.mauticform_wrapper {
  max-width: none;
  margin: 0;
}
.mauticform-row {
  margin-bottom: 12px;
}
.mauticform-error {
  color: #e53e3e;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  background: #fff5f5;
  border: 1px solid rgba(229,62,62,.2);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: none;
}
.mauticform-message {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  background: var(--primary-ultra-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: none;
}
.mauticform-errormsg {
  color: #e53e3e;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.mauticform-has-error .mauticform-input,
.mauticform-has-error .mauticform-textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}
.mauticform-input,
.mauticform-textarea {
  width: 100%;
}
.mauticform-field-hidden { display: none; }
.mauticform-button-wrapper .btn {
  width: 100%;
}

/* Button loading spinner */
.btn-loading {
  pointer-events: none;
  opacity: .85;
}
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin .6s linear infinite;
  vertical-align: middle;
}
@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Smooth scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted2); }
