/* Softbit Solution — Scrapbook / Torn-Paper Agency Theme */
:root {
  /* Logo greens (SOLUTION mark ~ #00A859) */
  --green: #00A859;
  --green-dark: #016734;
  --green-soft: #e6f7ef;
  --green-mid: #33c078;
  /* Logo blues (SOFTBIT mark ~ #235AA7) */
  --blue: #235AA7;
  --blue-dark: #1a447d;
  --blue-soft: #e8eef8;
  --blue-mid: #4a7fc4;
  --charcoal: #141414;
  --accent: #F58220;
  --accent-dark: #d96e12;
  --bg: #F4F5F7;
  --bg-paper: #FAFBFC;
  --bg-soft: #EEF0F4;
  --text: #1a1a1a;
  --muted: #3f3f3f;
  --border: #d8dde6;
  --shadow: 0 8px 24px rgba(30, 40, 60, 0.07);
  --shadow-lg: 0 16px 40px rgba(30, 40, 60, 0.11);
  --radius: 4px;
  --radius-sm: 8px;
  --header-h: 86px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --hand: "Caveat", cursive;
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  /* Cheap static grain (no SVG feTurbulence — that tanks scroll FPS) */
  --noise: radial-gradient(rgba(30, 40, 60, 0.04) 0.7px, transparent 0.8px);
  --noise-size: 3px 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--noise);
  background-size: var(--noise-size);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeSpeed;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.18;
  margin: 0 0 0.55em;
  letter-spacing: -0.015em;
  color: var(--charcoal);
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--muted); font-weight: 500; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--green); color: #fff; padding: 0.75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Typography helpers */
.hand-label {
  display: inline-block;
  font-family: var(--hand);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--blue);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.hand-label.center { display: block; text-align: center; }
.hand-label .spark { margin: 0 0.35rem; font-size: 0.7em; opacity: 0.85; }
.word-green { color: var(--green); }
.word-blue { color: var(--blue); }
.hand-line {
  display: block;
  font-family: var(--hand);
  font-weight: 700;
  color: var(--blue);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.01em;
  margin-top: 0.15em;
}
.serif-line { display: block; }
.circled {
  position: relative;
  display: inline-block;
  color: var(--charcoal);
}
.circled::after {
  content: "";
  position: absolute;
  left: -6%; right: -8%; top: -8%; bottom: -18%;
  border: 2.5px solid var(--blue);
  border-radius: 50% 45% 55% 48% / 48% 55% 45% 52%;
  transform: rotate(-2deg);
  pointer-events: none;
  opacity: 0.85;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 22px rgba(35,90,167,.28);
}
.btn-primary:hover { background: var(--blue-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(245,130,32,.28); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline-green {
  background: #fff; border-color: var(--blue); color: var(--blue);
  box-shadow: var(--shadow);
}
.btn-outline-green:hover { background: var(--blue-soft); color: var(--blue-dark); border-color: var(--blue-dark); }
.btn-outline-light { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--charcoal); }
.btn-sm { padding: 0.65rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.btn-arrow {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.22); font-size: 0.7rem;
}

/* Paper texture utility */
.paper-surface {
  background-color: var(--bg-paper);
  background-image: var(--noise);
  background-size: var(--noise-size);
}

/* Torn edges */
.torn-edge {
  height: 28px; width: 100%;
  background-color: var(--bg-paper);
  background-image: var(--noise);
  background-size: var(--noise-size);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 20 Q30 5 60 18 T120 16 T180 22 T240 12 T300 20 T360 8 T420 18 T480 14 T540 22 T600 10 T660 20 T720 12 T780 22 T840 14 T900 20 T960 8 T1020 18 T1080 12 T1140 20 T1200 14 V40 H0Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath fill='black' d='M0 20 Q30 5 60 18 T120 16 T180 22 T240 12 T300 20 T360 8 T420 18 T480 14 T540 22 T600 10 T660 20 T720 12 T780 22 T840 14 T900 20 T960 8 T1020 18 T1080 12 T1140 20 T1200 14 V40 H0Z'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  position: relative; z-index: 2;
}
.torn-edge-bottom { margin-top: -1px; }
.torn-edge-top {
  transform: scaleY(-1);
  margin-bottom: -1px;
}
.torn-edge.invert {
  background-color: var(--bg);
}

/* Dot clusters */
.paper-dots {
  position: absolute; width: 90px; height: 70px; pointer-events: none; opacity: 0.35;
  background-image: radial-gradient(circle, #b5b0a6 1.4px, transparent 1.5px);
  background-size: 12px 12px;
}
.paper-dots-tl { top: 12%; left: 4%; }
.paper-dots-br { bottom: 18%; right: 6%; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  height: var(--header-h);
  background: #FAF9F6;
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
  transform: translateZ(0);
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(40,35,25,.06);
}
.header-inner {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: 0.7rem; flex-shrink: 0; }
.brand-logo,
img.brand-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}
.site-header .brand-logo,
.mobile-menu-top .brand-logo {
  height: 40px;
}
@media (min-width: 768px) {
  .site-header .brand-logo { height: 48px; }
}
@media (max-width: 480px) {
  .brand-logo,
  img.brand-logo { height: 40px; }
}
.mobile-menu-top .brand-logo { height: 40px; }
.footer-brand-col .brand-logo { height: 54px; max-width: 290px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font); font-size: 1rem; color: var(--charcoal);
  letter-spacing: 0.06em; font-weight: 800;
}
.brand-text span {
  font-size: 0.68rem; letter-spacing: 0.18em; color: var(--blue); font-weight: 700;
}
.brand-light .brand-text strong { color: #fff; }
.brand-light .brand-text span { color: var(--blue-mid); }

.desktop-nav { display: none; align-items: stretch; gap: 0.1rem; }
.nav-link {
  padding: 0.55rem 0.65rem; font-size: 0.9rem; font-weight: 600; color: var(--text);
  border-radius: 8px; transition: color .2s, background .2s;
  display: inline-flex;
  align-items: center;
}
.nav-link:hover, .nav-link.is-active { color: var(--blue); }
.nav-link i { font-size: 0.65rem; margin-left: 0.2rem; opacity: .7; }
.nav-item { position: relative; }
.nav-item.has-mega {
  display: flex;
  align-items: center;
  align-self: stretch;
  height: var(--header-h);
}
.nav-item.has-mega > .nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.mega-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  transform: translateX(-40%);
  width: min(640px, 90vw);
  background: var(--bg-paper);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
  z-index: 1100;
}
/* Invisible hover bridge — prevents menu closing when moving cursor down */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .35rem;
  margin-right: .15rem;
  padding: .12rem .35rem;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1;
  vertical-align: middle;
}
.has-software-mega .mega-menu.software-mega {
  width: min(320px, 88vw);
  transform: translateX(-20%);
  padding: .55rem;
}
.software-mega-list {
  display: grid;
  gap: 0;
}
.software-mega-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem .75rem;
  border-bottom: 1px dashed rgba(40, 35, 25, .14);
  color: var(--charcoal);
  font-weight: 600;
  font-size: .9rem;
}
.software-mega-item:last-child { border-bottom: 0; }
.software-mega-item i {
  color: var(--green);
  width: 1.1rem;
  text-align: center;
}
.software-mega-item:hover {
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 8px;
}
.mm-new {
  display: inline-block;
  margin-left: .35rem;
  padding: .1rem .3rem;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: .58rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .05em;
  vertical-align: middle;
}

.software-page-hero .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
}
.software-card {
  position: relative;
}
.software-new-badge {
  position: absolute;
  top: .85rem;
  right: .85rem;
  padding: .2rem .45rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.software-empty {
  text-align: center;
  color: var(--muted);
}
.software-cta-band {
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  background: linear-gradient(180deg, #FAF9F6, #F3F1EC);
  border-top: 1px solid var(--border);
}
.software-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
}
.software-cta-inner h2 {
  margin: 0 0 .3rem;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
}
.software-cta-inner p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.35rem; }
.mega-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.8rem; border-radius: 10px; font-size: 0.9rem; font-weight: 500;
}
.mega-item i { color: var(--blue); width: 1.1rem; text-align: center; }
.mega-item:hover { background: var(--blue-soft); color: var(--blue-dark); }
.mega-cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.7rem; padding: 0.85rem 1rem; border-radius: 10px;
  background: var(--charcoal); color: #fff; font-weight: 600; font-size: 0.9rem;
}
.mega-cta:hover { background: var(--green); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-cta { display: none; }

.menu-toggle {
  width: 44px; height: 44px; border: 0; background: var(--bg-soft); border-radius: 12px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .25s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20, 24, 20, .48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .42s ease,
    visibility 0s linear .45s,
    background-color .42s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity .32s ease,
    visibility 0s linear 0s,
    background-color .32s ease;
}
.mobile-menu-panel {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  top: auto;
  height: min(100%, 96dvh);
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 0;
  transform: translateY(105%);
  transition: transform .52s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -16px 48px rgba(0,0,0,.16);
  will-change: transform;
}
.mobile-menu.is-open .mobile-menu-panel {
  transform: translateY(0);
  transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu.is-open,
  .mobile-menu-panel,
  .mobile-menu.is-open .mobile-menu-panel {
    transition: none !important;
  }
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.15rem 0.95rem;
  border-bottom: 1px solid #ececec;
  flex-shrink: 0;
}
.mobile-menu-top .brand-logo { height: 40px; }
.menu-close {
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: #f1f1f1; color: #555;
  font-size: 1.15rem; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s, color .2s;
}
.menu-close:hover { background: #e6e6e6; color: var(--charcoal); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 0.9rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.mm-link {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  min-height: 54px;
  transition: background .2s, color .2s;
}
.mm-link:not(.acc-trigger) {
  grid-template-columns: 40px 1fr;
}
.mm-link:hover { background: #f6f6f4; color: var(--charcoal); }
.mm-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: #f3f3f1;
  color: #3f3f3f;
  display: grid; place-items: center;
  font-size: 0.92rem;
  transition: background .2s, color .2s;
}
.mm-label { line-height: 1.2; }
.mm-chev {
  color: #6a6a6a;
  font-size: 0.72rem;
  display: grid; place-items: center;
  transition: transform .25s, color .2s;
}
.mm-link.is-active {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.mm-link.is-active .mm-ico {
  background: var(--blue);
  color: #fff;
}
.mm-link.is-active .mm-chev { color: var(--blue); }

.mobile-accordion { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-accordion.is-open > .acc-trigger {
  background: var(--blue-soft);
  color: var(--blue-dark);
}
.mobile-accordion.is-open > .acc-trigger .mm-ico {
  background: var(--blue);
  color: #fff;
}
.mobile-accordion.is-open > .acc-trigger .mm-chev {
  transform: rotate(90deg);
  color: var(--green);
}
.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .38s cubic-bezier(0.32, 0.72, 0, 1);
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.mobile-accordion.is-open .acc-panel {
  grid-template-rows: 1fr;
  margin: 0.1rem 0 0.25rem;
}
.acc-panel-inner {
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 14px;
}
.mobile-accordion.is-open .acc-panel-inner {
  padding: 0.4rem;
  background: #f7f8f5;
  border-color: #e6ebe1;
}
.acc-item {
  display: grid !important;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px !important;
  padding: 0.55rem 0.65rem !important;
  color: var(--charcoal) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  border-radius: 11px !important;
  background: #fff;
  border: 1px solid transparent;
  transition: background .2s, border-color .2s, transform .2s, color .2s;
  position: relative;
}
.acc-item::before { display: none !important; }
.acc-item-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid; place-items: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.acc-item-text {
  line-height: 1.25;
}
.acc-item-arrow {
  color: #c2c2c2;
  font-size: 0.62rem;
  transition: color .2s, transform .2s;
}
.acc-item:hover,
.acc-item:active {
  background: #fff !important;
  border-color: rgba(0, 168, 89,.28) !important;
  color: var(--green-dark) !important;
  box-shadow: 0 4px 12px rgba(40, 50, 30, .06);
}
.acc-item:hover .acc-item-arrow,
.acc-item:active .acc-item-arrow {
  color: var(--green);
  transform: translateX(2px);
}
.acc-view-all {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 44px !important;
  margin-top: 0.15rem;
  padding: 0.65rem 0.85rem !important;
  border-radius: 11px !important;
  background: var(--green) !important;
  color: #fff !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  position: relative;
}
.acc-view-all::before { display: none !important; }
.acc-view-all i {
  font-size: 0.75rem;
  transition: transform .2s;
}
.acc-view-all:hover,
.acc-view-all:active {
  background: var(--green-dark) !important;
  color: #fff !important;
}
.acc-view-all:hover i {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .acc-panel { transition: none !important; }
}

.mobile-menu-foot {
  flex-shrink: 0;
  padding: 0.85rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #ececec;
  background: #fff;
  display: grid;
  gap: 0.75rem;
}
.mm-help {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: #eef6e6;
  color: inherit;
}
.mm-help-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 168, 89,.12);
}
.mm-help-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.25;
}
.mm-help-copy strong {
  color: var(--green-dark);
  font-size: 0.98rem;
  font-weight: 800;
}
.mm-help-copy span {
  color: #3f3f3f;
  font-size: 0.82rem;
  font-weight: 600;
}
.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  background: var(--green);
  color: #fff !important;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(0, 168, 89,.28);
  transition: background .2s, transform .2s;
}
.mm-cta:hover { background: var(--green-dark); color: #fff !important; }
.mm-cta-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .desktop-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; position: relative; }
.section-soft, .section-paper {
  background-color: var(--bg-soft);
  background-image: var(--noise);
  background-size: var(--noise-size);
}
.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.65rem); }
.section-head p { font-size: 1.05rem; color: var(--muted); }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .38s var(--ease), transform .38s var(--ease); transition-delay: var(--reveal-delay, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Skip offscreen paint work while scrolling */
main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .float-y { animation: none !important; }
  .sd-track { animation: none !important; flex-wrap: wrap; width: auto; justify-content: center; max-width: 1100px; margin: 0 auto; }
  .sd-marquee { mask-image: none; -webkit-mask-image: none; overflow: visible; padding: 0 1rem; }
}

/* ========== HERO ========== */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
  background-color: var(--bg-paper);
  background-image: var(--noise);
  background-size: var(--noise-size);
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 0.9fr 1.1fr; gap: 1.75rem; }
}
.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.hero-copy .lead {
  font-size: clamp(1.02rem, 2vw, 1.12rem);
  max-width: 34rem;
  margin-bottom: 1.5rem;
  color: var(--text);
  font-weight: 500;
}
.trust-checks {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.25rem;
  margin-top: 1.4rem;
}
.trust-checks li {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.92rem; font-weight: 600; color: var(--charcoal);
}
.trust-checks i { color: var(--blue); font-size: 0.8rem; }

.hero-illustration {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 0.5rem 0 1rem;
}
.doodle-arrow {
  position: absolute;
  width: 90px; height: 60px;
  left: -10px; top: 18%;
  opacity: 0.9;
  z-index: 4;
  display: none;
}
@media (min-width: 992px) { .doodle-arrow { display: block; } }

.hero-banner-slider {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
}
.hero-banner-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  line-height: 0;
  background: var(--bg-paper, #faf8f3);
  aspect-ratio: 2000 / 1136;
  min-height: 180px;
}
.hero-banner-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease;
  z-index: 0;
}
.hero-banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.hero-banner-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
}
.hero-banner-dots button {
  width: 9px; height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d4d0c8;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-banner-dots button.is-active {
  background: var(--green);
  transform: scale(1.15);
}

.hero-banner {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  line-height: 0;
}
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}
.hero-banner.float-y { animation-name: floatBanner; }
@keyframes floatBanner {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-paper {
  position: relative; z-index: 2;
  width: min(100%, 420px);
  background: #fff;
  border: 1px solid #ebe6dc;
  border-radius: 2px;
  padding: 1.25rem 1.25rem 1.1rem;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.tape {
  position: absolute;
  width: 72px; height: 22px;
  background: linear-gradient(180deg, rgba(232,220,170,.75), rgba(220,205,145,.55));
  border: 1px solid rgba(180,160,90,.25);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
  z-index: 5;
}
.tape-tl { top: -10px; left: 18px; transform: rotate(-8deg); }
.tape-tr { top: -8px; right: 28px; transform: rotate(6deg); }
.hero-paper-top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
  margin-bottom: 0.85rem;
}
.mini-label {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 0.2rem;
}
.big-stat {
  font-family: var(--display); font-size: 1.85rem; color: var(--charcoal); line-height: 1;
}
.growth-pill {
  background: var(--blue-soft); color: var(--blue-dark);
  font-weight: 800; font-size: 0.9rem;
  padding: 0.35rem 0.7rem; border-radius: 999px;
}
.traffic-chart { margin-bottom: 0.85rem; }
.traffic-chart svg { width: 100%; height: 110px; display: block; }
.chart-months {
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: #999; margin-top: 0.25rem; padding: 0 0.2rem;
}
.hero-mini-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem 0.75rem;
  border-top: 1px dashed var(--border); padding-top: 0.85rem;
}
.hero-mini-stats strong {
  display: block; font-family: var(--display); font-size: 1rem; color: var(--charcoal); line-height: 1.1;
}
.hero-mini-stats span { font-size: 0.72rem; color: var(--muted); }

.float-card {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow);
  padding: 0.65rem 0.85rem; font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; gap: 0.45rem; z-index: 3;
  color: var(--charcoal);
}
.float-card i { color: var(--green); }
.fc-1 { top: 6%; right: 0; }
.fc-2 { top: 42%; right: -4%; }
.fc-3 { bottom: 10%; right: 2%; }
@media (max-width: 991px) {
  .fc-1 { top: auto; bottom: -8px; right: auto; left: 4%; }
  .fc-2 { display: none; }
  .fc-3 { bottom: -8px; right: 4%; }
}
.float-y { animation: floatY 4s ease-in-out infinite; }
.float-y.delay { animation-delay: 1.2s; }
.hero-paper.float-y { animation-name: floatPaper; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes floatPaper {
  0%, 100% { transform: rotate(1.2deg) translateY(0); }
  50% { transform: rotate(1.2deg) translateY(-8px); }
}

/* Trust bar */
.trust-bar {
  position: relative;
  padding: 1.75rem 0 2rem;
  background-color: #fff;
  background-image: var(--noise);
  background-size: var(--noise-size);
  margin-top: -1px;
}
.trust-bar h3, .trust-bar .hand-label {
  margin-bottom: 1.25rem;
}
.logo-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.logo-track::-webkit-scrollbar { display: none; }
.logo-pill {
  flex: 0 0 auto; scroll-snap-align: center;
  min-width: 130px; height: 58px; border: 1px solid var(--border); border-radius: 10px;
  background: var(--bg-paper); display: grid; place-items: center; padding: 0.5rem 1rem;
  color: #4a4640; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em;
}
.logo-pill img {
  max-width: 110px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .9;
  transition: opacity .25s;
}
.logo-pill:hover img {
  opacity: 1;
}
@media (min-width: 992px) {
  .logo-track { justify-content: center; flex-wrap: wrap; overflow: visible; }
}

/* Brands marquee + grid */
.brands-showcase { padding-bottom: 2.25rem; }
.brands-marquee {
  position: relative;
  overflow: hidden;
  margin-top: .25rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands-marquee-track {
  display: flex;
  gap: .85rem;
  width: max-content;
  animation: brandsMarquee 42s linear infinite;
  padding: .35rem 0 .5rem;
  will-change: transform;
  transform: translateZ(0);
}
.brands-marquee:hover .brands-marquee-track {
  animation-play-state: paused;
}
@keyframes brandsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.brand-chip {
  flex: 0 0 auto;
  width: 148px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: .65rem .9rem;
  border-radius: 14px;
  background: var(--bg-paper);
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(40, 35, 25, .04);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.brand-chip:hover {
  border-color: rgba(0, 168, 89,.35);
  box-shadow: 0 10px 24px rgba(0, 168, 89,.1);
  transform: translateY(-2px);
}
.brand-chip img {
  max-width: 118px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-chip span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--charcoal);
  text-align: center;
}

.brands-section {
  background:
    var(--noise),
    linear-gradient(180deg, #fff 0%, #FAF9F6 100%);
  background-size: var(--noise-size), auto;
}
.brands-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) {
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .brands-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.brand-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.15rem 1rem 1rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 89,.35);
  box-shadow: 0 16px 32px rgba(0, 168, 89,.12);
}
.brand-card-logo {
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: .75rem;
  border-radius: 12px;
  background:
    linear-gradient(180deg, #f7f5f0, #fff);
  border: 1px dashed #e4e0d8;
  padding: .65rem;
}
.brand-card-logo img {
  max-width: 130px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-fallback {
  font-size: .85rem;
  font-weight: 800;
  color: var(--green-dark);
}
.brand-card h3 {
  margin: 0;
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
@media (prefers-reduced-motion: reduce) {
  .brands-marquee-track { animation: none; }
}

/* What we do / split */
.split-2 { display: grid; gap: 2rem; }
@media (min-width: 900px) {
  .split-2 { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
}
.check-list { display: grid; gap: 0.75rem; margin: 1.25rem 0 1.5rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.7rem; color: var(--text); font-weight: 500;
}
.check-list i { color: var(--blue); margin-top: 0.2rem; }
.link-cta { color: var(--blue); font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }
.link-cta:hover { color: var(--blue-dark); gap: 0.65rem; }

/* ========== What We Do section ========== */
.what-section {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #FAF9F6;
  overflow: hidden;
}
.what-blob {
  position: absolute;
  width: min(260px, 40vw);
  height: min(200px, 30vw);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(0, 168, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}
.what-blob-tl { top: -50px; left: -70px; }
.what-blob-br { bottom: -60px; right: -80px; }
.what-dots {
  position: absolute;
  width: 90px; height: 70px;
  background-image: radial-gradient(circle, #c5bfb4 1.15px, transparent 1.25px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.what-dots-tr { top: 10%; right: 6%; }
.what-dots-mid { top: 48%; left: 8%; width: 70px; height: 55px; }
.what-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 960px) {
  .what-grid { grid-template-columns: 0.95fr 1.05fr; gap: 2.5rem; align-items: center; }
}

.what-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.65rem;
}
.what-label > i {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
}
.what-left h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 1.15rem;
  max-width: 16ch;
  line-height: 1.2;
}

.what-visual {
  position: relative;
  max-width: 420px;
  margin-top: 0.5rem;
}
.what-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.what-intro {
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 500;
}
.what-intro strong {
  color: var(--green-dark);
  font-weight: 800;
}

.what-list {
  display: grid;
  gap: 0;
  margin-bottom: 1.15rem;
}
.what-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid #e8e3d8;
}
.what-list li:first-child { padding-top: 0; }
.what-list li:last-child { border-bottom: 0; padding-bottom: 0; }

.what-ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8f4dc;
  color: #00A859 !important;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.what-ico i,
.what-ico .fa-solid {
  color: #00A859 !important;
  font-size: 1.05rem;
  line-height: 1;
}

.what-list strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  font-family: var(--font);
  line-height: 1.3;
}
.what-list li > div > span {
  display: block;
  color: #3f3f3f;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.45;
}

.btn-what {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  padding: 0.65rem 1.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  gap: 0.55rem;
}
.btn-what:hover {
  background: var(--green);
  color: #fff;
}
.btn-what i { color: inherit; }
.btn-what i:first-child { font-size: 0.9rem; }
.btn-what i:last-child { font-size: 0.7rem; }

@media (max-width: 959px) {
  .what-left h2 { max-width: none; }
  .what-visual { margin-inline: auto; max-width: 340px; }
}

/* ========== Software Development marquee ========== */
.sd-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: #fff;
}
.sd-dots {
  position: absolute;
  width: 72px; height: 90px;
  background-image: radial-gradient(circle, #c9c5bc 1.4px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.55;
  pointer-events: none;
}
.sd-dots-tl { top: 1.25rem; left: 1.25rem; }
.sd-dots-br { bottom: 1.25rem; right: 1.25rem; }
.sd-wave {
  position: absolute;
  width: min(220px, 40vw); height: 120px;
  pointer-events: none;
  opacity: 0.35;
  background:
    repeating-radial-gradient(ellipse at 30% 40%, transparent 0 10px, rgba(0, 168, 89,.08) 11px 12px);
}
.sd-wave-tr { top: 0; right: 0; }
.sd-wave-bl { bottom: 0; left: 0; }

.sd-head {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.sd-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.55rem;
  line-height: 1.15;
}
.sd-dark { color: #1a2a4a; }
.sd-head p {
  margin: 0 auto 1rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1rem;
}
.sd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border: 1.5px solid var(--green);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 700;
  background: #fff;
}
.sd-badge i {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid; place-items: center;
  font-size: 0.62rem;
}

.sd-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.sd-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: sdScroll 32s linear infinite;
  padding: 0.5rem 0 0.75rem;
  will-change: transform;
  transform: translateZ(0);
}
.sd-marquee:hover .sd-track { animation-play-state: paused; }
.sd-card {
  flex: 0 0 auto;
  width: min(300px, 78vw);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid #e8ebe4;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(30, 40, 20, .06);
}
.sd-ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  font-size: 1.15rem;
}
.sd-card strong {
  display: block;
  font-size: 0.98rem;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
  line-height: 1.25;
}
.sd-card span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.35;
  font-weight: 500;
}
@keyframes sdScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Paper cards */
.paper-card, .feature-card, .service-card, .industry-card, .blog-card, .cs-card, .t-card, .p-card, .faq-item, .form-card {
  background: #fff;
  background-image: var(--noise);
  background-size: var(--noise-size);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.grid-4 {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  border-radius: 4px 4px 18px 4px;
  padding: 1.5rem; transition: .3s var(--ease); height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 96% 100%, 88% 94%, 78% 100%, 68% 93%, 55% 100%, 42% 94%, 30% 100%, 18% 93%, 8% 100%, 0 94%);
}
.feature-card:hover {
  transform: translateY(-6px); border-color: var(--green); box-shadow: var(--shadow-lg);
}
.feature-card .num {
  font-family: var(--hand); font-weight: 700; color: var(--green); font-size: 1.4rem;
}
.feature-card .icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-soft);
  display: grid; place-items: center; color: var(--green); margin: 0.8rem 0 1rem;
  transition: .3s;
}
.feature-card:hover .icon { background: var(--green); color: #fff; transform: scale(1.08); }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feature-card p { margin: 0; font-size: 0.95rem; }

/* Services */
.grid-3 {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.services-showcase {
  display: grid; gap: 1.15rem; position: relative;
  grid-template-columns: 1fr;
  margin-bottom: 0.5rem;
}
@media (min-width: 700px) { .services-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .services-showcase { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border-radius: 4px;
  padding: 1.5rem; transition: .3s var(--ease); height: 100%;
  display: flex; flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 93%, 97% 100%, 90% 95%, 82% 100%, 72% 94%, 60% 100%, 48% 93%, 36% 100%, 24% 94%, 12% 100%, 0 95%);
}
.service-card:hover {
  border-color: var(--green); box-shadow: var(--shadow-lg); transform: translateY(-5px);
}
.service-card .icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--green-soft);
  color: var(--green); display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 1rem;
}
.service-card .icon.icon-has-img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f1ec;
  padding: 0;
}
.service-card .icon.icon-has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card .num {
  font-family: var(--hand); font-size: 1.2rem; font-weight: 700; color: var(--green);
}
.service-card h3 { font-size: 1.12rem; font-family: var(--font); font-weight: 700; }
.service-card p { flex: 1; font-size: 0.92rem; }
.service-card .more {
  margin-top: 0.9rem; align-self: flex-end;
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-grid; place-items: center;
  color: var(--green); background: var(--green-soft); font-weight: 700;
}
.service-card .more:hover { background: var(--green); color: #fff; }

.paperclip {
  display: none;
  position: absolute; right: -18px; top: 30%;
  width: 28px; height: 70px;
  border: 3px solid #c5c0b6;
  border-radius: 14px;
  box-shadow: inset 0 0 0 5px transparent;
  background: linear-gradient(90deg, transparent 40%, rgba(197,192,182,.4) 50%, transparent 60%);
  transform: rotate(12deg);
  opacity: 0.7;
}
@media (min-width: 1200px) { .paperclip { display: block; } }

/* Services section — compact professional grid */
.services-section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background:
    var(--noise),
    linear-gradient(180deg, #FAF9F6 0%, #fff 100%);
  background-size: var(--noise-size), auto;
}
.services-head {
  max-width: 640px;
  margin-bottom: 1.75rem;
}
.services-head h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: .55rem;
  line-height: 1.25;
}
.services-head p {
  margin: 0 auto;
  font-size: .95rem;
  max-width: 34rem;
  line-height: 1.55;
}
.services-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.05rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 6px 18px rgba(40, 35, 25, .04);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.svc-card:hover {
  border-color: rgba(0, 168, 89, .4);
  box-shadow: 0 12px 28px rgba(0, 168, 89, .1);
  transform: translateY(-3px);
}
.svc-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.svc-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.svc-more {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green);
  font-size: .78rem;
  transition: background .2s, color .2s, border-color .2s;
}
.svc-card:hover .svc-more,
.svc-more:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.svc-card h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--charcoal);
}
.svc-card p {
  margin: 0;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

/* Featured alternating */
.featured-block {
  display: grid; gap: 2rem; align-items: center; margin-bottom: clamp(3rem, 6vw, 5rem);
}
@media (min-width: 992px) {
  .featured-block { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .featured-block.reverse .featured-media { order: 2; }
}
.featured-media {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  min-height: 280px; display: grid; place-items: center; padding: 1rem;
  position: relative; overflow: hidden; box-shadow: var(--shadow);
}
.featured-media.has-image {
  padding: 0.75rem;
  background:
    radial-gradient(circle at 1px 1px, rgba(120,110,95,.06) 1px, transparent 0),
    #faf9f6;
  background-size: 16px 16px, auto;
}
.featured-media.has-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}
.featured-media .illus {
  width: min(100%, 340px); aspect-ratio: 4/3; border-radius: 12px;
  background: linear-gradient(135deg, var(--charcoal), #3a4a2e);
  display: grid; place-items: center; color: #fff; font-size: 3rem;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 991px) {
  .featured-media.has-image img { max-height: none; }
}
.benefit-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.4rem; }
.benefit-pills span {
  background: var(--green-soft); color: var(--green-dark); font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 0.75rem; border-radius: 999px;
}

/* Case studies carousel */
.carousel {
  display: flex; gap: 1.15rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.25rem 1rem; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.cs-card {
  flex: 0 0 min(88%, 380px); scroll-snap-align: start;
  border-radius: 4px; overflow: hidden; transition: .3s;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cs-thumb {
  height: 180px; background: linear-gradient(135deg, #2a3522, #00A859);
  display: grid; place-items: center; color: #fff; font-size: 2rem; position: relative;
}
.cs-body { padding: 1.25rem 1.35rem 1.5rem; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.7rem; }
.cs-meta span {
  font-size: 0.75rem; font-weight: 700; background: var(--bg-soft); color: var(--muted);
  padding: 0.25rem 0.55rem; border-radius: 6px;
}
.cs-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin: 1rem 0; }
.cs-metrics div {
  text-align: center; background: var(--green-soft); border-radius: 10px; padding: 0.6rem 0.3rem;
}
.cs-metrics strong { display: block; color: var(--green-dark); font-family: var(--display); font-size: 1rem; }
.cs-metrics span { font-size: 0.68rem; color: var(--muted); }
@media (min-width: 1100px) {
  .cs-card { flex-basis: calc(33.333% - 0.8rem); }
}

/* Stats (legacy green bar - unused on homepage) */
.stats-section {
  background: linear-gradient(135deg, var(--green) 0%, #016734 55%, #3f7218 100%);
  color: #fff; padding: clamp(3.5rem, 7vw, 5.5rem) 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.12), transparent 40%);
}
.stats-section .section-head h2, .stats-section .section-head p { color: #fff; }
.stats-section .section-head p { opacity: .9; }
.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; position: relative;
}
@media (min-width: 900px) { .stats-grid { grid-template-columns: repeat(5, 1fr); } }
.stat-item { text-align: center; padding: 1rem; }
.stat-item .value {
  font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  line-height: 1; margin-bottom: 0.4rem;
}
.stat-item .label { font-size: 0.9rem; opacity: .92; }

/* ========== Trust Stats (homepage) ========== */
.trust-stats-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #FFFEFA;
  overflow: hidden;
}
.ts-blob {
  position: absolute;
  width: min(280px, 42vw);
  height: min(220px, 32vw);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(0, 168, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}
.ts-blob-tr { top: -40px; right: -50px; }
.ts-blob-bl { bottom: -50px; left: -60px; }
.ts-dots {
  position: absolute;
  width: 90px; height: 70px;
  background-image: radial-gradient(circle, #c5bfb4 1.15px, transparent 1.25px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.ts-dots-tl { top: 10%; left: 4%; }
.ts-dots-br { bottom: 12%; right: 5%; }
.trust-stats-section .container { position: relative; z-index: 1; }

.trust-stats-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
.trust-stats-rule {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
  margin: 0 auto 1rem;
  position: relative;
}
.trust-stats-rule::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.trust-stats-head h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.55rem);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.trust-stats-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.trust-stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .trust-stats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .trust-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.trust-stat-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 168, 89, 0.1);
  border-radius: 18px;
  padding: 1.5rem 1rem 1.85rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(40, 35, 25, 0.06);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(40, 35, 25, 0.09);
}
.trust-stat-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e8f4dc;
  color: #00A859 !important;
  display: grid;
  place-items: center;
  margin: 0 auto 0.9rem;
  font-size: 1.2rem;
}
.trust-stat-ico i { color: #00A859 !important; }
.trust-stat-value {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.trust-stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-stat-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M0 8 Q25 2 50 8 T100 8 T150 8 T200 8 V14 H0Z' fill='%2300A859'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
  opacity: 0.85;
}

/* Big CTA */
.big-cta {
  background: var(--charcoal); color: #fff; border-radius: 20px; padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 1.5rem; align-items: center; position: relative; overflow: hidden;
}
@media (min-width: 800px) { .big-cta { grid-template-columns: 1.4fr auto; } }
.big-cta::after {
  content: ""; position: absolute; width: 220px; height: 220px; right: -40px; top: -40px;
  background: radial-gradient(circle, rgba(245,130,32,.35), transparent 70%);
}
.big-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.big-cta p { color: rgba(255,255,255,.78); margin: 0; max-width: 36rem; }

/* Testimonials (legacy) */
.t-card {
  flex: 0 0 min(90%, 360px); scroll-snap-align: start;
  border-radius: 4px; padding: 1.5rem; min-height: 280px;
  display: flex; flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.stars { color: var(--accent); margin-bottom: 0.8rem; letter-spacing: 0.1em; font-size: 0.85rem; }
.t-card blockquote { flex: 1; margin: 0; color: var(--text); font-size: 0.98rem; line-height: 1.6; }
.t-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.2rem; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; font-weight: 700; font-family: var(--display);
}
.t-author strong { display: block; color: var(--charcoal); font-size: 0.95rem; }
.t-author span { font-size: 0.8rem; color: var(--muted); }
@media (min-width: 768px) { .t-card { flex-basis: calc(50% - 0.6rem); } }
@media (min-width: 1100px) { .t-card { flex-basis: calc(33.333% - 0.8rem); } }

/* ========== Testimonials section (homepage) ========== */
.testimonials-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #F7F5F0;
  overflow: hidden;
}
.tm-blob {
  position: absolute;
  width: min(280px, 42vw);
  height: min(220px, 32vw);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(0, 168, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}
.tm-blob-tr { top: -40px; right: -50px; }
.tm-blob-bl { bottom: -50px; left: -60px; }
.tm-dots {
  position: absolute;
  width: 90px; height: 70px;
  background-image: radial-gradient(circle, #c5bfb4 1.15px, transparent 1.25px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.tm-dots-tl { top: 10%; left: 4%; }
.tm-dots-br { bottom: 12%; right: 5%; }
.testimonials-section .container { position: relative; z-index: 1; }

.testimonials-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.25rem;
}
.testimonials-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.55rem;
}
.testimonials-rule {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--green);
  border-radius: 99px;
  margin: 0 auto 0.9rem;
}
.testimonials-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 0.55rem;
}
.testimonials-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.testimonials-track {
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0.15rem 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.tm-card {
  flex: 0 0 min(90%, 360px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0, 168, 89, 0.08);
  border-radius: 16px;
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: 0 10px 28px rgba(40, 35, 25, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: transform .25s var(--ease), box-shadow .25s;
}
.tm-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(40, 35, 25, 0.09);
}
.tm-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.tm-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.tm-google {
  display: inline-grid;
  place-items: center;
  line-height: 0;
}
.tm-stars {
  color: #F4B400;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  line-height: 1;
}
.tm-quote {
  font-family: var(--display);
  font-size: 3rem;
  line-height: 0.7;
  color: #cfe6b8;
  font-weight: 700;
}
.tm-card blockquote {
  flex: 1;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.65;
  font-family: var(--font);
}
.tm-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid #ebe6dc;
}
.tm-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e8f4dc;
  color: #3f7a1a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: var(--display);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.tm-author strong {
  display: block;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}
.tm-author span {
  font-size: 0.82rem;
  color: #3f3f3f;
  font-weight: 500;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.testimonials-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d9d4c8;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.testimonials-dots button.is-active {
  background: var(--green);
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .tm-card { flex-basis: calc(50% - 0.6rem); }
}
@media (min-width: 1100px) {
  .tm-card { flex-basis: calc(33.333% - 0.8rem); }
}

/* Industries (legacy) */
.grid-industries {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) { .grid-industries { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .grid-industries { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  border-radius: 14px; padding: 1.25rem; transition: .3s; height: 100%;
}
.industry-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-card i { color: var(--green); font-size: 1.35rem; margin-bottom: 0.7rem; }
.industry-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; font-family: var(--font); }
.industry-card p { margin: 0; font-size: 0.88rem; }

/* ========== Industries listing page ========== */
.industries-page .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.05em;
  display: inline-block;
  position: relative;
  line-height: 1.2;
}
.industries-page .word-hand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.06em;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' fill='none'%3E%3Cpath d='M2 7c20-6 40 4 58-1s38-3 58 1' stroke='%2300A859' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.industries-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  line-height: 0;
}
.industries-hero-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.industries-hero-inner {
  position: absolute;
  inset: 0 0 10% 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  pointer-events: none;
}
.industries-hero-inner > * {
  pointer-events: auto;
  max-width: min(34rem, 46vw);
}
.industries-hero .breadcrumb {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  margin-bottom: .95rem;
}
.industries-hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.35rem);
  line-height: 1.12;
  margin: 0 0 .75rem;
}
.industries-hero .word-hand {
  font-size: 1.12em;
}
.industries-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.55;
  font-weight: 500;
}
@media (max-width: 760px) {
  .industries-hero {
    line-height: normal;
    padding: 1.5rem 0 1.75rem;
    background: var(--bg-paper);
  }
  .industries-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 78% center;
    opacity: .28;
  }
  .industries-hero-inner {
    position: relative;
    inset: auto;
    padding-block: .25rem;
  }
  .industries-hero-inner > * {
    max-width: 100%;
  }
}

.industries-grid-section {
  padding: clamp(1.6rem, 3.5vw, 2.5rem) 0;
  background: #fff;
}
.industries-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.industries-grid-section .ind-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.industries-grid-section .ind-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 89, .3);
  box-shadow: 0 14px 30px rgba(40, 35, 25, .08);
}
.industries-grid-section .ind-card-top {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .55rem;
}
.industries-grid-section .ind-card-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.industries-grid-section .ind-card h2 {
  margin: .15rem 0 0;
  font-size: 1.02rem;
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.3;
}
.industries-grid-section .ind-card p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
  flex: 1;
}

.industries-cta {
  padding: clamp(1.5rem, 3.5vw, 2.25rem) 0;
  background:
    var(--noise),
    linear-gradient(180deg, #FAF9F6, #F3F1EC);
  background-size: var(--noise-size), auto;
  border-top: 1px solid var(--border);
}
.industries-cta-inner {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(40, 35, 25, .05);
}
@media (min-width: 860px) {
  .industries-cta-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
  }
}
.industries-cta-ico {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.industries-cta-plane {
  position: absolute;
  top: -.1rem;
  right: -.15rem;
  font-size: .75rem;
  color: var(--green-dark);
}
.industries-cta-copy h2 {
  margin: 0 0 .3rem;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.25;
}
.industries-cta-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.industries-cta .btn { white-space: nowrap; justify-content: center; }

/* ========== Industries section (homepage) ========== */
.industries-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #FAF9F6;
  overflow: hidden;
}
.ind-blob {
  position: absolute;
  width: min(280px, 42vw);
  height: min(220px, 32vw);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(0, 168, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}
.ind-blob-tl { top: -40px; left: -60px; }
.ind-blob-br { bottom: -50px; right: -70px; }
.ind-dots {
  position: absolute;
  width: 90px; height: 70px;
  background-image: radial-gradient(circle, #c5bfb4 1.15px, transparent 1.25px);
  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.ind-dots-tr { top: 10%; right: 5%; }
.ind-dots-bl { bottom: 12%; left: 4%; }
.industries-section .container { position: relative; z-index: 1; }

.industries-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.25rem;
}
.industries-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.industries-label > i {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green);
  border-radius: 99px;
}
.industries-head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: 0.7rem;
}
.industries-head p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--muted);
}

.industries-section .industries-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .industries-section .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .industries-section .industries-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}

.industries-section .ind-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 168, 89, 0.08);
  border-radius: 16px;
  padding: 1.1rem 1rem;
  box-shadow: 0 8px 22px rgba(40, 35, 25, 0.05);
  transition: transform .25s var(--ease), box-shadow .25s, border-color .25s;
  height: 100%;
}
.industries-section .ind-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 89, 0.28);
  box-shadow: 0 14px 30px rgba(40, 35, 25, 0.08);
}
.industries-section .ind-ico {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8f4dc;
  color: #00A859 !important;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.industries-section .ind-ico i,
.industries-section .ind-ico .fa-solid {
  color: #00A859 !important;
}
.industries-section .ind-body h3 {
  font-family: var(--font);
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  color: var(--charcoal);
  line-height: 1.25;
}
.industries-section .ind-body p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Process timeline */
.timeline {
  display: grid; gap: 1rem; position: relative;
}
.timeline::before {
  content: ""; position: absolute; left: 18px; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green), var(--accent)); border-radius: 99px;
}
.timeline-step {
  display: grid; grid-template-columns: 40px 1fr; gap: 1rem; align-items: start;
  position: relative;
}
.timeline-dot {
  width: 38px; height: 38px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-size: 0.75rem; font-weight: 800; z-index: 1;
  font-family: var(--hand); font-size: 1rem; box-shadow: 0 0 0 6px var(--bg);
}
.timeline-content {
  background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.15rem;
  box-shadow: var(--shadow);
}
.timeline-content h3 { font-size: 1.05rem; margin-bottom: 0.25rem; font-family: var(--font); }
.timeline-content p { margin: 0; font-size: 0.92rem; }
@media (min-width: 992px) {
  .timeline {
    display: flex; gap: 0; overflow-x: auto; padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }
  .timeline::before {
    left: 0; right: 0; top: 19px; bottom: auto; height: 3px; width: auto;
  }
  .timeline-step {
    flex: 0 0 180px; grid-template-columns: 1fr; justify-items: center; text-align: center;
    scroll-snap-align: start; padding: 0 0.5rem;
  }
  .timeline-content { margin-top: 0.75rem; }
}

/* ========== PROCESS SECTION (scrapbook bg image) ========== */
.process-section {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6.5rem);
  overflow: hidden;
  isolation: isolate;
}
.process-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.process-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 242, 0.28);
  pointer-events: none;
}
.process-inner {
  position: relative;
  z-index: 1;
}
.process-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
  position: relative;
}
.process-badge {
  display: inline-block;
  background: #4a6b35;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  box-shadow: 2px 2px 0 rgba(0,0,0,.06);
  transform: rotate(-1deg);
}
.process-head h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  margin-bottom: 0.7rem;
}
.process-head > p {
  margin: 0 auto 0.75rem;
  max-width: 34rem;
  font-size: 0.98rem;
}
.process-underline {
  display: block;
  width: 110px;
  height: 8px;
  margin: 0 auto 0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' preserveAspectRatio='none'%3E%3Cpath d='M2 6 Q20 2 40 6 T80 5 T118 6' fill='none' stroke='%2300A859' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.process-aside {
  display: none;
  position: absolute;
  left: -8%;
  top: 58%;
  font-size: 1.15rem !important;
  margin: 0 !important;
  transform: rotate(-6deg);
}
.process-aside-arrow {
  display: block;
  width: 72px;
  height: 32px;
  margin-top: 0.15rem;
  margin-left: 1.5rem;
}
@media (min-width: 1100px) {
  .process-aside { display: block; }
}

.process-track {
  display: grid;
  gap: 1.75rem;
  position: relative;
}
.process-line {
  display: none;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
  align-items: start;
  position: relative;
}
.process-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--hand);
  font-size: 1.15rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 5px rgba(35,90,167,.3);
  position: relative;
  z-index: 2;
}
.process-dash {
  display: none;
}
.process-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5dfd4;
  padding: 1.1rem 1.05rem 1.35rem;
  box-shadow: 0 10px 24px rgba(40,35,25,.07);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 96% 100%, 88% 93%, 78% 100%, 68% 92%, 55% 100%, 42% 93%, 30% 100%, 18% 92%, 8% 100%, 0 93%);
}
.process-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}
.process-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.process-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}
.process-card-tear {
  position: absolute;
  right: 6px;
  bottom: 4px;
  width: 28px;
  height: 16px;
  background: #4a6b35;
  clip-path: polygon(0 40%, 20% 0, 45% 35%, 70% 5%, 100% 30%, 100% 100%, 0 100%);
  opacity: 0.85;
}

@media (min-width: 992px) {
  .process-track {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
    justify-content: space-between;
    overflow-x: auto;
    padding: 0.5rem 0 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .process-line {
    display: block;
    position: absolute;
    left: 2%;
    right: 2%;
    top: 22px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #008D49 8%, #008D49 92%, transparent);
    border-radius: 99px;
    z-index: 0;
  }
  .process-step {
    flex: 1 1 0;
    min-width: 128px;
    max-width: 160px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    scroll-snap-align: start;
    gap: 0;
  }
  .process-dash {
    display: block;
    width: 1px;
    height: 18px;
    border-left: 2px dashed #8fb56a;
    margin: 0.45rem 0 0.55rem;
  }
  .process-card {
    width: 100%;
    text-align: left;
  }
  .process-icon { margin-inline: auto; }
  .process-card h3 { text-align: center; }
  .process-card p { text-align: center; font-size: 0.8rem; }
}

@media (max-width: 991px) {
  .process-section {
    background-color: #f3f0e8;
  }
  .process-bg {
    background-position: top center;
    opacity: 0.95;
  }
  .process-track::before {
    content: "";
    position: absolute;
    left: 21px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: #008D49;
    border-radius: 99px;
    opacity: 0.55;
  }
}

/* Portfolio */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; justify-content: center;
}
.filter-btn {
  border: 1px solid var(--border); background: #fff; color: var(--muted);
  padding: 0.55rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: .2s; min-height: 42px;
}
.filter-btn.is-active, .filter-btn:hover {
  background: var(--green); border-color: var(--green); color: #fff;
}
.portfolio-grid {
  display: grid; gap: 1.15rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
.p-card {
  border-radius: 4px; overflow: hidden; transition: .3s; height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.p-thumb {
  height: 180px; background: linear-gradient(135deg, #1E1E1E, #4a6b2e);
  display: grid; place-items: center; color: #fff; font-size: 1.8rem;
  overflow: hidden;
}
.p-thumb.has-img {
  padding: 0;
  background: #eef1ea;
}
.p-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-body { padding: 1.15rem 1.25rem 1.35rem; }
.p-cat { font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.p-card h3 {
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--blue);
  line-height: 1.25;
  margin: 0 0 .55rem;
  letter-spacing: 0.01em;
}
.p-card.hidden { display: none; }

/* ========== Portfolio listing page ========== */
.portfolio-page .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.08em;
  display: inline-block;
  position: relative;
  line-height: 1.15;
}
.portfolio-page .word-hand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.06em;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' fill='none'%3E%3Cpath d='M2 7c20-6 40 4 58-1s38-3 58 1' stroke='%2300A859' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.portfolio-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  line-height: 0;
}
.portfolio-hero-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.portfolio-hero-inner {
  position: absolute;
  inset: 0 0 10% 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  pointer-events: none;
}
.portfolio-hero-inner > * {
  pointer-events: auto;
  max-width: min(34rem, 46vw);
}
.portfolio-hero .breadcrumb {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  margin-bottom: .85rem;
}
.portfolio-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  line-height: 1.12;
  margin: 0 0 .65rem;
}
.portfolio-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.96rem, 1.45vw, 1.08rem);
  line-height: 1.55;
  font-weight: 500;
}
@media (max-width: 760px) {
  .portfolio-hero {
    line-height: normal;
    padding: 1.35rem 0 1.5rem;
    background: var(--bg-paper);
  }
  .portfolio-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% center;
    opacity: .28;
  }
  .portfolio-hero-inner {
    position: relative;
    inset: auto;
    padding-block: .2rem;
  }
  .portfolio-hero-inner > * { max-width: 100%; }
}

.portfolio-listing {
  padding: clamp(1.35rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: #fff;
}
.port-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  margin: 0 auto 1.5rem;
  max-width: 52rem;
}
.port-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .48rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.port-filter-btn i { color: var(--green); font-size: .78rem; }
.port-filter-btn:hover {
  border-color: rgba(0, 168, 89, .45);
  color: var(--green-dark);
}
.port-filter-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 168, 89, .28);
}
.port-filter-btn.is-active i { color: #fff; }

.port-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  max-width: none;
  margin: 0;
}
@media (min-width: 980px) {
  .port-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
}
.port-empty {
  text-align: center;
  color: var(--muted);
  margin: 1.5rem 0 0;
}
.port-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  margin-top: 1.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
}
.port-pager-count {
  margin: 0;
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}
.port-pager-links {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.port-page-btn,
.port-page-num {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}
.port-page-btn:hover,
.port-page-num:hover {
  border-color: var(--green);
  color: var(--green-dark);
}
.port-page-num.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
@media (max-width: 640px) {
  .port-pager { justify-content: center; text-align: center; }
}
.port-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.port-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 89, .28);
  box-shadow: 0 14px 30px rgba(40, 35, 25, .08);
}
.port-card.is-hidden { display: none; }
.port-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8f2dc, #f4f1ea);
  overflow: hidden;
}
.port-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.port-card-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 1.7rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 89, .12), transparent 45%),
    linear-gradient(145deg, #eef6e6, #f7f4ee);
}
.port-card-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .85rem;
  box-shadow: 0 6px 14px rgba(0, 168, 89, .35);
  z-index: 1;
  border: 3px solid #fff;
}
.port-card-body {
  position: relative;
  padding: 1.45rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.port-card-cat {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .28rem;
}
.port-card-body h2 {
  margin: 0 0 .35rem;
  font-family: var(--hand);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--green);
}
.port-card-body > p {
  margin: 0 2.1rem .5rem 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.45;
  flex: 1;
}
.port-card-client {
  font-size: .8rem;
  color: var(--charcoal);
  font-weight: 600;
  margin-right: 2.1rem;
}
.port-card-go {
  position: absolute;
  right: .85rem;
  bottom: .85rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--green);
  border: 1px solid rgba(0, 168, 89, .35);
  display: grid;
  place-items: center;
  font-size: .78rem;
  box-shadow: 0 4px 12px rgba(40, 35, 25, .06);
  transition: background .2s, color .2s, transform .2s, border-color .2s;
}
.port-card-go:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateX(2px);
}
@media (max-width: 640px) {
  .port-card-media { aspect-ratio: 4 / 3; }
  .port-card-fallback { font-size: 1.25rem; }
  .port-card-badge {
    width: 30px;
    height: 30px;
    font-size: .7rem;
    border-width: 2px;
  }
  .port-card-body { padding: 1.2rem .7rem .85rem; }
  .port-card-cat { font-size: .62rem; }
  .port-card-body h2 { font-size: 1rem; }
  .port-card-body > p {
    margin-right: 1.6rem;
    font-size: .76rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .port-card-client {
    font-size: .72rem;
    margin-right: 1.6rem;
  }
  .port-card-go {
    width: 28px;
    height: 28px;
    right: .65rem;
    bottom: .65rem;
    font-size: .7rem;
  }
}

/* Blog */
.blog-card {
  border-radius: 4px; overflow: hidden; height: 100%;
  display: flex; flex-direction: column; transition: .3s;
  clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-thumb {
  height: 180px; background: linear-gradient(120deg, var(--green-soft), #dfe9d4);
  display: grid; place-items: center; color: var(--green); font-size: 2rem;
}
.blog-body { padding: 1.2rem 1.3rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.5rem; }
.blog-body h3 { font-size: 1.1rem; }
.blog-body p { flex: 1; font-size: 0.92rem; }

/* ========== Blog listing page ========== */
.blog-page-hero {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.6rem) 0 clamp(2.4rem, 5vw, 3.4rem);
  background: var(--bg-paper);
  overflow: hidden;
  isolation: isolate;
}
.blog-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.blog-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
}
.blog-page-hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  line-height: 1.15;
  margin: 0 0 .55rem;
}
.blog-page-hero .word-hand,
.blog-newsletter .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.08em;
}
.blog-page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
  max-width: 34rem;
  font-weight: 500;
}
@media (max-width: 760px) {
  .blog-page-hero-bg { opacity: .45; object-position: 70% top; }
  .blog-page-hero-inner { max-width: 100%; }
}

.blog-listing {
  padding: clamp(1.35rem, 3vw, 2rem) 0 clamp(2rem, 4vw, 2.75rem);
  background: #fff;
}
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  margin: 0 auto 1.5rem;
  max-width: 52rem;
}
.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .48rem .9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.blog-filter-btn i { color: var(--green); font-size: .78rem; }
.blog-filter-btn:hover {
  border-color: rgba(0, 168, 89, .45);
  color: var(--green-dark);
}
.blog-filter-btn.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 168, 89, .28);
}
.blog-filter-btn.is-active i { color: #fff; }

.blog-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 640px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 980px; margin: 0 auto; gap: 1.35rem; }
}

.blog-post-card {
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
  transition: transform .22s var(--ease), box-shadow .22s, border-color .22s;
}
.blog-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 89, .28);
  box-shadow: 0 14px 30px rgba(40, 35, 25, .08);
}
.blog-post-card.is-hidden { display: none; }
.blog-post-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e8f2dc, #f4f1ea);
  overflow: hidden;
}
.blog-post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.7), transparent 45%),
    linear-gradient(135deg, #e7f1db, #f7f4ee);
}
.blog-post-cat {
  position: absolute;
  top: .7rem;
  left: .7rem;
  padding: .28rem .55rem;
  border-radius: 7px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(0, 168, 89, .35);
  color: var(--green-dark);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.blog-post-body {
  padding: .95rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .4rem;
}
.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
  font-size: .75rem;
  color: var(--muted);
  font-weight: 600;
}
.blog-post-meta i { color: var(--green); margin-right: .2rem; }
.blog-post-body h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
}
.blog-post-body h2 a:hover { color: var(--green-dark); }
.blog-post-body > p {
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-post-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .35rem;
  color: var(--green);
  font-weight: 700;
  font-size: .88rem;
}
.blog-post-more:hover { color: var(--green-dark); gap: .5rem; }
.blog-empty {
  text-align: center;
  color: var(--muted);
  margin: 1.5rem 0 0;
  font-weight: 600;
}

.blog-newsletter {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.6rem) 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-paper);
}
.blog-newsletter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.blog-newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.blog-newsletter-copy h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.25;
}
.blog-newsletter-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.blog-newsletter-form { width: 100%; }
.blog-newsletter-row {
  display: grid;
  gap: .55rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .blog-newsletter-row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
}
.blog-newsletter-row .input-with-icon {
  background: #fff;
  border-radius: 999px;
  border: 1px solid var(--border);
  min-height: 48px;
  overflow: hidden;
}
.blog-newsletter-row .input-with-icon input {
  border: 0;
  background: transparent;
  border-radius: 999px;
  min-height: 46px;
  padding-top: .7rem;
  padding-bottom: .7rem;
}
.blog-newsletter-row .btn {
  white-space: nowrap;
  justify-content: center;
  min-height: 48px;
  padding-inline: 1.25rem;
  border-radius: 999px;
}
@media (max-width: 560px) {
  .blog-newsletter-bg { opacity: .5; }
}

/* ========== Insights / Latest blog (homepage) ========== */
.insights-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: #F7F5F0;
  overflow: hidden;
}
.insights-blob {
  position: absolute;
  width: min(280px, 42vw);
  height: min(220px, 34vw);
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(0, 168, 89, 0.1);
  pointer-events: none;
  z-index: 0;
}
.insights-blob-tl { top: -40px; left: -60px; }
.insights-blob-br { bottom: -50px; right: -70px; border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%; }
.insights-dots {
  position: absolute;
  width: 100px; height: 80px;
  background-image: radial-gradient(circle, #c5bfb4 1.2px, transparent 1.3px);
  background-size: 12px 12px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.insights-dots-tr { top: 12%; right: 5%; }
.insights-dots-bl { bottom: 14%; left: 4%; }
.insights-section .container { position: relative; z-index: 1; }

.insights-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.insights-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.55rem;
}
.insights-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--green);
  margin: 0 auto 0.85rem;
  border-radius: 99px;
}
.insights-rule-accent {
  width: 64px;
  margin-top: 0.85rem;
  margin-bottom: 0;
  position: relative;
}
.insights-rule-accent::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 5px;
  background: var(--green);
  border-radius: 99px;
}
.insights-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0;
}

.insights-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .insights-grid { grid-template-columns: repeat(3, 1fr); }
}

.insight-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(0, 168, 89, 0.08);
  box-shadow:
    0 10px 28px rgba(40, 35, 25, 0.05),
    0 4px 0 0 rgba(0, 168, 89, 0.22);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 36px rgba(40, 35, 25, 0.08),
    0 4px 0 0 rgba(0, 168, 89, 0.35);
}
.insight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin: 0 auto 1.15rem;
}
.insight-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
  text-align: center;
}
.insight-meta > span:first-child { color: var(--green); }
.insight-meta time { color: #4a4640; font-weight: 600; }
.insight-dot { color: #b5b0a6; }
.insight-card h3 {
  font-size: 1.15rem;
  text-align: center;
  margin-bottom: 0.65rem;
  line-height: 1.3;
}
.insight-card p {
  text-align: center;
  font-size: 0.92rem;
  flex: 1;
  margin-bottom: 1.1rem;
}
.insight-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.92rem;
  margin-top: auto;
}
.insight-more:hover { gap: 0.6rem; color: var(--green-dark); }
.insight-more i { font-size: 0.75rem; }

.insights-cta {
  text-align: center;
  margin-top: 2.25rem;
}
.btn-insights {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green);
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 700;
}
.btn-insights:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item { border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 1.1rem 1.25rem; font-weight: 700; color: var(--charcoal); font-size: 1rem;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; min-height: 56px;
}
.faq-q i { color: var(--green); transition: .25s; }
.faq-item.is-open .faq-q i { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 1.25rem 1.2rem; color: var(--muted); font-size: 0.95rem;
}
.faq-item.is-open .faq-a { display: block; }

/* Contact */
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 2.5rem; } }
.contact-info-card {
  background: var(--charcoal); color: #fff; border-radius: 20px; padding: 2rem;
}
.contact-info-card h2 { color: #fff; }
.contact-info-card p { color: rgba(255,255,255,.75); }
.contact-lines { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-lines a, .contact-lines span {
  display: flex; align-items: flex-start; gap: 0.75rem; color: #fff; font-weight: 500;
}
.contact-lines i { color: var(--green-mid); margin-top: 0.2rem; }
.form-card {
  border-radius: 16px; padding: 1.5rem;
}
.form-grid { display: grid; gap: 0.9rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--charcoal); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 12px; padding: 0.8rem 0.95rem;
  background: var(--bg-soft); transition: .2s; color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--green); background: #fff; box-shadow: 0 0 0 3px rgba(0, 168, 89,.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-msg { margin-top: 0.9rem; padding: 0.8rem 1rem; border-radius: 10px; font-size: 0.92rem; display: none; }
.form-msg.success { display: block; background: var(--green-soft); color: var(--green-dark); }
.form-msg.error { display: block; background: #fdecea; color: #b42318; }
.btn.loading { pointer-events: none; opacity: .75; }
.btn .spinner {
  width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite; display: none;
}
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Contact page redesign */
.contact-page {
  position: relative;
  background-color: var(--bg-paper);
  overflow: hidden;
  isolation: isolate;
}
.contact-page-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.contact-hero {
  position: relative;
  z-index: 1;
  padding: clamp(2.4rem, 5vw, 3.8rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  background: transparent;
  overflow: visible;
  isolation: auto;
}
.contact-hero-bg { display: none; }
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: min(40rem, 62%);
}
.contact-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 .85rem;
}
.contact-hero .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.05em;
}
.contact-hero-lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
  font-weight: 500;
}
@media (max-width: 760px) {
  .contact-hero {
    padding-bottom: clamp(2rem, 6vw, 3rem);
  }
  .contact-hero-inner { max-width: 100%; }
  .contact-page-bg {
    opacity: .55;
    object-position: 70% top;
  }
}

.contact-main {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}
.contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .contact-layout {
    grid-template-columns: 0.92fr 1.18fr;
    gap: 1.5rem;
  }
}

.contact-panel {
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.08), transparent 40%),
    repeating-linear-gradient(0deg, transparent, transparent 11px, rgba(255,255,255,.035) 11px, rgba(255,255,255,.035) 12px),
    repeating-linear-gradient(90deg, transparent, transparent 11px, rgba(255,255,255,.035) 11px, rgba(255,255,255,.035) 12px),
    linear-gradient(160deg, #3f7a1a 0%, #2f5f14 45%, #244a10 100%);
  color: #fff;
  border-radius: 22px;
  padding: 1.75rem 1.5rem 1.85rem;
  box-shadow: 0 18px 40px rgba(36, 74, 16, .28);
}
.contact-panel h2 {
  margin: 0 0 .45rem;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
}
.contact-panel > p {
  margin: 0 0 1.35rem;
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.5;
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.contact-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.contact-list-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .9rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.contact-list small {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: .15rem;
}
.contact-list a,
.contact-list span {
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  line-height: 1.4;
  word-break: break-word;
}
.contact-list a:hover { color: #d7f0b8; }

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 16px 40px rgba(40, 35, 25, .08);
}
.contact-form-grid { gap: 1rem; }
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}
.input-with-icon > i {
  position: absolute;
  left: .9rem;
  color: #9aa094;
  font-size: .9rem;
  pointer-events: none;
  z-index: 1;
}
.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem .95rem .85rem 2.55rem;
  background: #f6f5f1;
  transition: .2s;
  color: var(--text);
  font: inherit;
}
.input-with-icon textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: .9rem;
}
.textarea-wrap { align-items: flex-start; }
.textarea-wrap > i { top: 1rem; }
.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 168, 89,.15);
}
.contact-submit {
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.2rem;
  font-size: 1rem;
  border-radius: 14px;
}
.contact-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .4rem;
  margin-top: 1.15rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.contact-trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: .35rem;
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
}
@media (min-width: 560px) {
  .contact-trust { gap: .5rem; }
  .contact-trust > div {
    flex-direction: row;
    justify-content: center;
    gap: .45rem;
    text-align: left;
    font-size: .8rem;
  }
}
.contact-trust i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: .75rem;
  flex-shrink: 0;
}

.contact-map-section { padding-top: 0; }
.map-embed-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 21 / 9;
  min-height: 260px;
  box-shadow: 0 10px 28px rgba(40, 35, 25, .06);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-strip {
  position: relative;
  isolation: isolate;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  background: var(--bg-paper);
}
.contact-strip-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.contact-strip-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  max-width: 920px;
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
}
.contact-strip-copy {
  flex: 1 1 280px;
  max-width: 34rem;
}
.contact-strip-copy h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.2;
}
.contact-strip-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
  font-weight: 500;
}
.contact-strip-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  flex: 0 0 auto;
}
.contact-strip-hand {
  font-family: var(--hand);
  color: var(--green-dark);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 700px) {
  .contact-strip-bg { opacity: .45; }
  .contact-strip-inner { padding: 1rem; }
}

/* Page hero */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background-color: var(--bg-paper);
  background-image: var(--noise);
  background-size: var(--noise-size);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.88rem; color: var(--muted); margin-bottom: 0.8rem; }
.breadcrumb a { color: var(--blue); font-weight: 600; }

.service-detail-hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 860px) {
  .service-detail-hero-grid {
    grid-template-columns: 1.4fr .6fr;
    gap: 2rem;
  }
}
.service-detail-icon-card {
  width: min(180px, 42vw);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.7), transparent 45%),
    linear-gradient(145deg, var(--green-soft), #dfe9d4);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 3rem;
  border: 1px solid rgba(0, 168, 89, .18);
  box-shadow: 0 14px 32px rgba(40, 35, 25, .06);
}
.service-detail-image-card {
  padding: 0;
  overflow: hidden;
  background: #f3f1ec;
  font-size: 0;
}
.service-detail-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-featured-image {
  margin: 0 0 1.5rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f3f1ec;
  box-shadow: 0 10px 28px rgba(40, 35, 25, .05);
}
.service-featured-image img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}
.service-detail-body { padding-top: clamp(1.75rem, 4vw, 2.75rem); }
.service-detail-prose,
.software-detail-prose {
  max-width: 52rem;
}
.service-detail-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.service-aside-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 8px 22px rgba(40, 35, 25, .04);
}
.service-aside-card h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}
.service-aside-card p {
  margin: 0 0 .9rem;
  color: var(--muted);
  font-size: .9rem;
}
.service-aside-card .btn-block { width: 100%; margin-bottom: .5rem; }
.service-aside-card .btn-block:last-child { margin-bottom: 0; }
.service-related-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.service-related-list a {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .65rem;
  border-radius: 10px;
  background: #f7f6f2;
  font-weight: 600;
  font-size: .88rem;
}
.service-related-list a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}
.service-related-list i { color: var(--green); width: 1.1rem; text-align: center; }

.service-extra-copy {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
  margin: .85rem 0 0;
}
.service-highlights {
  margin: .75rem 0 1.25rem;
}
.service-highlights li {
  margin-bottom: .45rem;
}

.service-tools-section {
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
  background: #FAF9F6;
  border-top: 1px solid var(--border);
}
.service-tools-section .section-head {
  margin-bottom: 1.25rem;
  max-width: 560px;
}
.service-tools-section .section-head h2 {
  font-family: var(--hand);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.8vw, 2.55rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: .4rem;
  letter-spacing: .01em;
}
.service-tools-section .section-head h2 .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: inherit;
  font-weight: inherit;
}

/* Service detail banner (SEO + all services) */
.service-detail-page .word-hand,
.seo-service-page .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  display: inline-block;
  position: relative;
  line-height: 1.15;
}
.service-detail-page .word-hand::after,
.seo-service-page .word-hand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.06em;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' fill='none'%3E%3Cpath d='M2 7c20-6 40 4 58-1s38-3 58 1' stroke='%2300A859' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}
.seo-service-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  line-height: 0;
}
.seo-service-hero-bg {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}
.seo-service-hero-inner {
  position: absolute;
  inset: 0 0 10% 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: normal;
  pointer-events: none;
}
.seo-service-hero-inner > * {
  pointer-events: auto;
  max-width: min(34rem, 48vw);
}
.seo-service-hero .breadcrumb {
  margin-bottom: .55rem;
}
.seo-service-hero .section-label {
  margin-bottom: .45rem;
}
.seo-service-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 .55rem;
  color: var(--charcoal);
}
.seo-service-hero h1 .word-hand {
  font-size: 1.05em;
}
.seo-service-hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  line-height: 1.55;
  font-weight: 500;
}
.seo-hero-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}
@media (max-width: 760px) {
  .seo-service-hero {
    line-height: normal;
    padding: 0;
    background: var(--bg-paper);
    display: flex;
    flex-direction: column;
  }
  .seo-service-hero-bg {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    opacity: 1;
    display: block;
  }
  .seo-service-hero-inner {
    position: relative;
    inset: auto;
    order: 1;
    padding: 1.35rem 0 1.15rem;
  }
  .seo-service-hero-inner > * { max-width: 100%; }
  .seo-hero-actions {
    margin-top: .95rem;
  }
  .seo-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.seo-ppc-block {
  margin: 1.75rem 0 1.5rem;
  padding: 1.25rem 1.2rem 1.35rem;
  background: #f6f8f3;
  border: 1px solid #e4ebd9;
  border-radius: 16px;
}
.seo-ppc-title {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 .85rem !important;
  font-size: 1.15rem !important;
  font-weight: 700;
  color: #222;
}
.seo-ad-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: .22rem .48rem;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.seo-ad-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}
.seo-ppc-block > p {
  margin: 0 0 .9rem;
  color: var(--muted);
}
.seo-ppc-block .check-list {
  margin: .5rem 0 1rem;
}
.seo-ppc-features {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.seo-ppc-features span {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d9e4cb;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 600;
}

.seo-service-body {
  background:
    linear-gradient(180deg, rgba(250, 249, 246, .92), rgba(247, 246, 242, .98)),
    var(--noise);
  background-size: auto, var(--noise-size);
}
.seo-prose {
  max-width: 46rem;
}
.seo-service-body .seo-prose > h2,
.seo-service-body .seo-prose > h3:not(.seo-ppc-title) {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #141414;
  line-height: 1.15;
}
.seo-service-body .seo-prose > h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  margin: 0 0 1rem;
}
.seo-service-body .seo-prose > h3:not(.seo-ppc-title) {
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  margin: 1.85rem 0 1rem;
}
.seo-service-body .seo-prose > h3:first-of-type {
  margin-top: 1.6rem;
}
.seo-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.18rem);
  line-height: 1.75;
  color: #3a3a3a;
  margin: 0 0 1rem;
}
.seo-service-body .service-extra-copy {
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  line-height: 1.75;
  color: #4a4a4a;
  margin: 0 0 .25rem;
}
.seo-service-body .service-benefit-cards {
  margin: .35rem 0 1.5rem;
  gap: .9rem;
}
.seo-service-body .service-benefit-card {
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .07);
  border-radius: 16px;
  padding: 1.2rem 1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(40, 35, 25, .05);
}
.seo-service-body .service-benefit-ico {
  width: 52px;
  height: 52px;
  margin-bottom: .7rem;
  font-size: 1.2rem;
}
.seo-service-body .service-benefit-card h4 {
  font-size: .98rem;
  font-weight: 700;
}
.seo-include-list {
  margin: .35rem 0 1.5rem;
  gap: .95rem;
}
.seo-include-list li {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  align-items: center;
}
.seo-include-list li i {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: inline-grid;
  place-items: center;
  font-size: .72rem;
  margin-top: 0;
  flex-shrink: 0;
}
.seo-include-list li.reveal.is-visible i {
  animation: seo-check-pop .45s var(--ease) both;
  animation-delay: var(--reveal-delay, 0s);
}
@keyframes seo-check-pop {
  0% { transform: scale(.55); opacity: .4; }
  70% { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); }
}

.seo-tools-section .section-head h2 {
  font-family: var(--display);
  color: var(--charcoal);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.seo-tools-section .section-head h2 .word-hand {
  font-family: var(--hand);
  color: var(--green);
  font-size: 1.12em;
}

.service-benefit-cards {
  display: grid;
  gap: .75rem;
  margin: .85rem 0 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .service-benefit-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service-benefit-card {
  background: #f7f6f2;
  border: 1px solid rgba(40, 35, 25, .06);
  border-radius: 14px;
  padding: 1rem .9rem;
  text-align: center;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.service-benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 89, .25);
  box-shadow: 0 8px 18px rgba(40, 35, 25, .05);
}
.service-benefit-ico {
  width: 44px;
  height: 44px;
  margin: 0 auto .55rem;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}
.service-benefit-card h4 {
  margin: 0;
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
}
.service-tools-section .section-head p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.service-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
@media (min-width: 560px) {
  .service-tools-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .service-tools-grid { grid-template-columns: repeat(6, 1fr); gap: .9rem; }
}
.service-tool-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 14px;
  padding: .9rem .55rem .85rem;
  box-shadow: 0 6px 16px rgba(40, 35, 25, .04);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.service-tool-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 89, .28);
  box-shadow: 0 10px 22px rgba(40, 35, 25, .07);
}
.service-tool-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  box-shadow: 0 4px 12px rgba(40, 35, 25, .05);
  overflow: hidden;
  padding: .45rem;
}
.service-tool-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.service-tool-name {
  font-size: .74rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.25;
  max-width: 7.8rem;
}

/* About page */
.about-page .section-head {
  margin-bottom: 1.1rem;
  max-width: 560px;
}
.about-page .section-head h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin-bottom: .3rem;
}
.about-page .section-head p {
  font-size: .9rem;
  margin: 0;
  color: var(--muted);
}
.about-page .section-label {
  margin-bottom: .35rem;
  font-size: .72rem;
}
.about-page .word-hand {
  font-style: normal;
  color: var(--green);
  font-family: var(--hand);
  font-weight: 700;
  font-size: 1.08em;
  position: relative;
}
.about-page .word-hand::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -.08em;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 10' fill='none'%3E%3Cpath d='M2 7c20-6 40 4 58-1s38-3 58 1' stroke='%2300A859' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: .9;
  pointer-events: none;
}

.about-hero {
  position: relative;
  padding: clamp(1.7rem, 3.5vw, 2.5rem) 0 clamp(2.4rem, 5vw, 3.4rem);
  background: var(--bg-paper);
  overflow: hidden;
  isolation: isolate;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.about-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 38rem;
}
.about-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.15;
  margin: 0 0 .55rem;
}
.about-hero p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
  max-width: 34rem;
  font-weight: 500;
}
@media (max-width: 760px) {
  .about-hero-bg { opacity: .45; object-position: 70% top; }
  .about-hero-inner { max-width: 100%; }
}

.about-intro {
  padding: clamp(1.6rem, 3.2vw, 2.4rem) 0;
  background: #fff;
}
.about-intro-grid {
  display: grid;
  gap: 1.35rem;
  align-items: start;
}
@media (min-width: 960px) {
  .about-intro-grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 1.75rem;
  }
}
.about-copy h2 {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  margin: 0 0 .7rem;
  line-height: 1.25;
}
.about-copy p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0 0 .7rem;
  line-height: 1.55;
}
.about-inline-cta { margin-top: .55rem; }

.about-side {
  display: grid;
  gap: .85rem;
}
.about-mv-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1.2rem;
  box-shadow: 0 10px 26px rgba(40, 35, 25, .05);
  overflow: hidden;
}
.about-mv-dots {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 42px;
  height: 42px;
  background-image: radial-gradient(circle, #cfc9be 1.1px, transparent 1.2px);
  background-size: 9px 9px;
  opacity: .55;
  pointer-events: none;
}
.about-mv-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: .65rem;
  font-size: 1rem;
}
.about-mv-card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
}
.about-mv-card p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
}

.about-stats {
  padding: 1.1rem 0 1.35rem;
  background: #FAF9F6;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stats-row {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) {
  .about-stats-row { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .about-stats-row { grid-template-columns: repeat(5, 1fr); gap: .5rem; }
}
.about-stat {
  text-align: center;
  padding: .35rem .25rem;
}
.about-stat-ico {
  color: var(--green);
  font-size: 1.15rem;
  margin-bottom: .35rem;
}
.about-stat-value {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: .25rem;
}
.about-stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
}

.about-video-section {
  padding: clamp(1.6rem, 3.2vw, 2.4rem) 0;
  background: #fff;
}
.about-video-section .section-head { margin-bottom: .85rem; }
.about-video-wrap {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 12px 28px rgba(40, 35, 25, .08);
}
.about-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about-caps-section {
  padding: clamp(1.6rem, 3.2vw, 2.4rem) 0;
  background: #FAF9F6;
}
.about-caps-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .about-caps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .about-caps-grid { grid-template-columns: repeat(4, 1fr); gap: .85rem; }
}
.about-cap-card {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 14px;
  padding: .9rem .95rem;
  box-shadow: 0 6px 18px rgba(40, 35, 25, .04);
  height: 100%;
}
.about-cap-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.about-cap-card h3 {
  margin: 0 0 .25rem;
  font-size: .92rem;
  line-height: 1.3;
}
.about-cap-card p {
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}

.about-help-section {
  padding: clamp(1.6rem, 3.2vw, 2.4rem) 0;
  background: #fff;
}
.about-help-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .about-help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .about-help-grid { grid-template-columns: repeat(5, 1fr); }
}
.about-help-card {
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .08);
  border-radius: 14px;
  padding: 1rem .9rem 1.05rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(40, 35, 25, .04);
  height: 100%;
}
.about-help-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  margin: 0 auto .65rem;
  font-size: 1rem;
}
.about-help-card h3 {
  margin: 0 0 .35rem;
  font-size: .92rem;
}
.about-help-card p {
  margin: 0;
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.4;
}
.about-page .about-cta-wrap { margin-top: 1.35rem; }

.about-brands {
  padding: 1.25rem 0 1.5rem;
  margin-top: 0;
}
.about-brands .hand-label {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  margin-bottom: .75rem;
}
.about-brands .brand-chip {
  width: 128px;
  height: 62px;
  border-radius: 12px;
  padding: .5rem .7rem;
}
.about-brands .brand-chip img {
  max-width: 100px;
  max-height: 38px;
}
.about-brands .brands-marquee-track {
  gap: .65rem;
  padding: .2rem 0 .35rem;
}

/* Footer — clean light redesign */
.site-footer {
  --paper: #F7F7F5;
  --paper-edge: #E6E4DF;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background: var(--paper);
  color: var(--text);
}
.footer-dots {
  position: absolute;
  width: 56px;
  height: 56px;
  background-image: radial-gradient(circle, #c9c3b8 1.15px, transparent 1.25px);
  background-size: 10px 10px;
  opacity: .45;
  pointer-events: none;
  z-index: 0;
}
.footer-dots-tr { top: 1.25rem; right: 1.5rem; }
.footer-dots-ml { top: 42%; left: 1rem; width: 40px; height: 40px; }
.footer-leaf-deco {
  position: absolute;
  left: 0;
  top: 18%;
  opacity: .9;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media (min-width: 1100px) {
  .footer-leaf-deco { display: block; }
}

.footer-main {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 2.75rem) 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .footer-grid {
    grid-template-columns: 1.35fr repeat(4, minmax(0, .85fr)) 1.35fr;
    gap: 1.25rem 1rem;
  }
}
.footer-brand-col .brand { margin-bottom: .7rem; display: inline-flex; }
.footer-brand-col .brand-logo {
  height: 48px;
  max-width: 250px;
  width: auto;
}
.footer-tagline {
  margin: 0 0 .85rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  max-width: 16rem;
}
.footer-social { display: flex; gap: .45rem; flex-wrap: wrap; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 168, 89, .35);
  background: #fff;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: .9rem;
  transition: .2s;
}
.footer-social a:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.footer-col h3 {
  margin: 0 0 .75rem;
  color: var(--green);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.footer-col a {
  color: var(--charcoal);
  font-size: .9rem;
  font-weight: 550;
  transition: color .15s;
}
.footer-col a:hover { color: var(--green); }

.footer-contact { gap: .75rem !important; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.footer-contact li > div {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.footer-contact small {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-contact a,
.footer-contact li > div span {
  color: var(--charcoal);
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
}
.footer-contact a:hover { color: var(--green); }
.contact-ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .1rem;
}
.footer-contact .contact-ico,
.footer-contact .contact-ico i {
  color: #fff;
}

.footer-newsletter {
  position: relative;
  z-index: 1;
  padding: 0 0 1.5rem;
}
.footer-news-card {
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: center;
  background: #FFFEFA;
  border: 1px solid var(--paper-edge);
  border-radius: 18px;
  padding: 1.15rem 1.25rem;
  box-shadow: 0 10px 28px rgba(40, 35, 25, .05);
}
@media (min-width: 900px) {
  .footer-news-card {
    grid-template-columns: auto 1.1fr 1.2fr;
    gap: 1.15rem 1.35rem;
    padding: 1.25rem 1.5rem;
  }
}
.footer-news-ico {
  position: relative;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.footer-news-plane {
  position: absolute;
  top: -.15rem;
  right: -.2rem;
  font-size: .75rem;
  color: var(--green-dark);
}
.footer-news-copy h3 {
  margin: 0 0 .3rem;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  color: var(--charcoal);
}
.footer-news-copy .word-hand {
  font-style: normal;
  font-family: var(--hand);
  color: var(--green);
  font-weight: 700;
}
.footer-news-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.45;
}
.footer-news-row {
  display: grid;
  gap: .5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) {
  .footer-news-row {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }
}
.footer-news-row input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .7rem 1.05rem;
  background: #fff;
  font: inherit;
  color: var(--text);
}
.footer-news-row input:focus {
  outline: none;
  border-color: rgba(0, 168, 89, .55);
  box-shadow: 0 0 0 3px rgba(0, 168, 89, .12);
}
.footer-news-row .btn {
  min-height: 46px;
  border-radius: 999px;
  white-space: nowrap;
  justify-content: center;
  padding-inline: 1.15rem;
}
.footer-news-msg { margin-top: .45rem; }
.footer-news-clip {
  position: absolute;
  right: 1rem;
  bottom: .85rem;
  color: rgba(0, 168, 89, .35);
  font-size: 1rem;
  pointer-events: none;
  display: none;
}
@media (min-width: 900px) {
  .footer-news-clip { display: block; }
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--paper-edge);
  padding: 1rem 0 1.15rem;
  background: rgba(255,255,255,.45);
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
}
.footer-bottom p { margin: 0; }
.footer-copy {
  font-weight: 600;
  color: var(--charcoal);
}
.footer-slogan {
  font-family: var(--hand) !important;
  font-size: 1.15rem !important;
  font-weight: 600;
  color: var(--green) !important;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.footer-slogan i { font-size: .85rem; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  align-items: center;
}
.footer-legal a {
  color: var(--blue);
  font-weight: 600;
}
.footer-legal a:hover { color: var(--blue); }
.footer-legal .dot { color: #c5c0b6; }

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 920;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(35, 90, 167, .35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .25s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.back-to-top:hover { background: var(--blue-dark); color: #fff; }
@media (min-width: 768px) {
  .back-to-top { bottom: 1.5rem; right: 1.25rem; }
}

/* Softbit AI chatbot */
.sb-chat {
  position: fixed;
  right: 1rem;
  bottom: 5.5rem;
  z-index: 960;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .75rem;
}
@media (min-width: 768px) {
  .sb-chat { bottom: 5.5rem; right: 1.25rem; }
  .back-to-top { bottom: 1.5rem; right: 1.25rem; }
}

/* Mobile: clear bottom nav + keep copyright readable */
@media (max-width: 767px) {
  :root {
    --mcta-clear: calc(4.1rem + env(safe-area-inset-bottom, 0px));
  }
  body {
    padding-bottom: var(--mcta-clear);
  }
  .footer-bottom {
    padding: 1.15rem 0 calc(var(--mcta-clear) + 4.75rem);
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: .55rem;
  }
  .footer-slogan { display: none; }
  .footer-legal { justify-content: center; }
  .footer-copy {
    max-width: 22rem;
    margin-inline: auto;
    line-height: 1.45;
  }
  .sb-chat {
    bottom: calc(var(--mcta-clear) + 0.55rem);
    right: 0.7rem;
  }
  .back-to-top {
    bottom: calc(var(--mcta-clear) + 0.7rem);
    left: 0.7rem;
    right: auto;
    width: 42px;
    height: 42px;
  }
  .sb-chat-fab {
    width: 52px;
    height: 52px;
  }
}
.sb-chat-fab {
  position: relative;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #4a7fc4 0%, #235AA7 55%, #1a447d 100%);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(35, 90, 167, .38);
  display: grid;
  place-items: center;
  transition: transform .2s, box-shadow .2s;
}
.sb-chat-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(35, 90, 167, .45);
  color: #fff;
}
.sb-chat-fab-face,
.sb-chat-fab-close {
  grid-area: 1 / 1;
  display: grid;
  place-items: center;
  transition: opacity .2s, transform .2s;
}
.sb-chat-fab-face { font-size: 1.35rem; position: relative; }
.sb-chat-fab-sparkle {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: .7rem;
  color: #b8d4ff;
  animation: sbSpark 1.8s ease-in-out infinite;
}
.sb-chat-fab-close {
  opacity: 0;
  transform: scale(.6);
  font-size: 1.15rem;
}
.sb-chat.is-open .sb-chat-fab-face { opacity: 0; transform: scale(.6); }
.sb-chat.is-open .sb-chat-fab-close { opacity: 1; transform: scale(1); }
.sb-chat-tip {
  position: absolute;
  right: calc(100% + 10px);
  background: var(--charcoal);
  color: #fff;
  font-size: .76rem;
  font-weight: 600;
  padding: .4rem .7rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .2s;
}
.sb-chat-fab:hover .sb-chat-tip { opacity: 1; }
.sb-chat.is-open .sb-chat-tip { opacity: 0; }
@keyframes sbSpark {
  0%, 100% { transform: scale(1) rotate(0); opacity: .85; }
  50% { transform: scale(1.25) rotate(12deg); opacity: 1; }
}

.sb-chat-panel {
  width: min(340px, calc(100vw - 1.5rem));
  height: min(460px, calc(100vh - 8.5rem));
  background: #fff;
  border: 1px solid rgba(40, 35, 25, .1);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(40, 35, 25, .16);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform-origin: bottom right;
}
.sb-chat.is-open .sb-chat-panel {
  display: flex;
  animation: sbChatIn .22s var(--ease);
}
.sb-chat-panel[hidden] {
  display: none !important;
}
@keyframes sbChatIn {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: none; }
}
.sb-chat-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  background: linear-gradient(135deg, #235AA7, #1a447d);
  color: #fff;
}
.sb-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sb-bot-face { font-size: 1.1rem; }
.sb-chat-head strong { display: block; font-size: .95rem; }
.sb-chat-head small { opacity: .88; font-size: .72rem; }
.sb-chat-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  cursor: pointer;
}
.sb-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: .9rem;
  background: #f7f6f2;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.sb-msg-wrap {
  display: flex;
  flex-direction: column;
  max-width: 92%;
}
.sb-msg-wrap.bot { align-self: flex-start; align-items: flex-start; }
.sb-msg-wrap.user { align-self: flex-end; align-items: flex-end; }
.sb-msg-name {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 .25rem .15rem;
}
.sb-msg {
  max-width: 100%;
  padding: .7rem .85rem;
  border-radius: 14px;
  font-size: .86rem;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(40, 35, 25, .04);
}
.sb-msg.bot {
  background: #fff;
  color: var(--charcoal);
  border-bottom-left-radius: 4px;
}
.sb-msg.user {
  background: var(--green);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.sb-msg a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}
.sb-msg.bot a { color: var(--green-dark); }
.sb-typing {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  min-width: 52px;
  padding: .85rem 1rem !important;
}
.sb-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aaa8c;
  animation: sbTyping 1s ease-in-out infinite;
}
.sb-typing span:nth-child(2) { animation-delay: .15s; }
.sb-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes sbTyping {
  0%, 80%, 100% { transform: translateY(0); opacity: .45; }
  40% { transform: translateY(-4px); opacity: 1; }
}
.sb-chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .55rem .75rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.sb-chat-quick button {
  border: 1px solid rgba(0, 168, 89, .3);
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 999px;
  padding: .3rem .65rem;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
}
.sb-chat-quick button:hover { background: #fff; border-color: var(--green); }
.sb-chat-form {
  display: flex;
  gap: .45rem;
  padding: .65rem .75rem .8rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.sb-chat-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .65rem .9rem;
  font: inherit;
  background: #f6f5f1;
}
.sb-chat-form input:focus {
  outline: none;
  border-color: rgba(35, 90, 167, .55);
}
.sb-chat-form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.sb-chat-form button:hover { background: var(--blue-dark); color: #fff; }

/* Mobile CTA bar — Softbit theme */
.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: flex;
  justify-content: stretch;
  padding: 0 0.55rem calc(0.45rem + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.mobile-cta-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  padding: 0.22rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(35, 90, 167, .16);
  box-shadow: 0 8px 24px rgba(30, 40, 60, .12);
}
.mobile-cta-bar .mcta-bubble {
  flex: 1 1 0;
  min-width: 0;
  height: 44px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.mobile-cta-bar .mcta-bubble i {
  font-size: 0.95rem;
  color: var(--blue);
  line-height: 1;
}
.mobile-cta-bar .mcta-bubble span {
  font-size: 0.56rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
  line-height: 1;
}
.mobile-cta-bar .mcta-bubble:active,
.mobile-cta-bar .mcta-bubble:hover {
  transform: scale(.97);
  background: #fff;
  border-color: rgba(35, 90, 167, .32);
}
.mobile-cta-bar .mcta-bubble:active i,
.mobile-cta-bar .mcta-bubble:hover i {
  color: var(--blue-dark);
}
.mobile-cta-bar .mcta-bubble:active span,
.mobile-cta-bar .mcta-bubble:hover span {
  color: var(--blue-dark);
}
@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}
@media (max-width: 767px) {
  .btn-group .btn { width: 100%; }
}

.prose { max-width: 780px; }
.prose h2 { margin-top: 1.8rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { list-style: disc; padding-left: 1.2rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; }

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.curve-divider { line-height: 0; margin-top: -1px; }
.curve-divider svg { width: 100%; height: 48px; display: block; }

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 1.85rem; }
  .float-card { font-size: 0.72rem; padding: 0.5rem 0.65rem; }
  .brand-text strong { font-size: 0.9rem; }
  .hero-paper { transform: none; }
}

/* Careers page redesign */
.careers-page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f7f8f5 0%, #f2f4ef 55%, #eef2ea 100%);
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(3rem, 7vw, 4.5rem);
}
.careers-decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
  background-repeat: no-repeat;
}
.careers-decor-tl {
  top: -2rem;
  left: -1rem;
  width: min(280px, 42vw);
  height: min(280px, 42vw);
  background-image:
    radial-gradient(circle at 30% 40%, rgba(0, 168, 89,.14) 0 28%, transparent 29%),
    radial-gradient(circle at 62% 28%, rgba(0, 168, 89,.1) 0 18%, transparent 19%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M40 160c20-50 10-90 4-120 28 24 48 62 36 120z' fill='%2300A859' opacity='.18'/%3E%3Cpath d='M70 165c28-56 18-100 8-130 34 30 54 72 40 130z' fill='%238fbf5a' opacity='.22'/%3E%3C/svg%3E");
  background-size: cover, cover, 70% auto;
  background-position: center, center, left top;
}
.careers-decor-br {
  right: -1.5rem;
  bottom: -1rem;
  width: min(300px, 46vw);
  height: min(300px, 46vw);
  background-image:
    radial-gradient(circle at 70% 60%, rgba(0, 168, 89,.12) 0 26%, transparent 27%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M160 40c-22 48-12 88-6 120-26-22-46-60-34-120z' fill='%2300A859' opacity='.16'/%3E%3Cpath d='M130 35c-26 52-16 96-6 126-32-28-52-70-38-126z' fill='%238fbf5a' opacity='.2'/%3E%3C/svg%3E");
  background-size: cover, 72% auto;
  background-position: center, right bottom;
}
.careers-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.careers-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 3.5vw, 2.25rem);
}
.careers-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .65rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
}
.careers-eyebrow::after {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.careers-hero-copy h1 {
  margin: 0 0 .7rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #2f6b14;
  letter-spacing: -0.02em;
}
.careers-lead {
  margin: 0;
  max-width: 34rem;
  color: #5c6556;
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.65;
}
.careers-hero-art {
  display: flex;
  justify-content: center;
  animation: careers-float 5s ease-in-out infinite;
}
.careers-hero-art img {
  width: min(100%, 380px);
  height: auto;
  display: block;
}
@keyframes careers-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.careers-card {
  background: #fff;
  border: 1px solid #e6ebe0;
  border-radius: 22px;
  padding: clamp(1.35rem, 3.5vw, 2.1rem);
  box-shadow: 0 18px 48px rgba(40, 55, 30, .08);
}
.careers-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.15rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid #ecefe8;
}
.careers-card-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--green-soft);
  color: var(--green);
  font-size: 1.15rem;
}
.careers-card-head h2 {
  margin: 0 0 .2rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
}
.careers-card-head p {
  margin: 0;
  color: #6b7466;
  font-size: .95rem;
}
.careers-form-grid {
  gap: 1.15rem 1.25rem;
}
.careers-card .form-group label {
  font-size: .92rem;
  font-weight: 700;
  color: #222;
  margin-bottom: .45rem;
}
.careers-card .req { color: #d32f2f; }
.careers-card .input-with-icon > i {
  color: var(--green);
  font-size: .92rem;
}
.careers-card .input-with-icon input {
  background: #fff;
  border: 1px solid #dfe5d8;
  border-radius: 12px;
  padding: .9rem .95rem .9rem 2.55rem;
  box-shadow: none;
}
.careers-card .input-with-icon input:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 168, 89, .14);
}
.careers-card .input-with-icon input::placeholder {
  color: #9aa394;
}

.careers-resume-label {
  line-height: 1.45;
  display: block;
}
.careers-dropzone {
  position: relative;
  margin-top: .35rem;
  border: 1.5px dashed #33C078;
  background: #f4f9ef;
  border-radius: 14px;
  min-height: 148px;
  transition: .2s ease;
}
.careers-dropzone.is-dragover {
  border-color: var(--green);
  background: #eaf5df;
  box-shadow: 0 0 0 3px rgba(0, 168, 89, .12);
}
.careers-dropzone.has-file {
  border-style: solid;
  border-color: var(--green);
}
.careers-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.careers-dropzone-inner {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1.35rem 1rem;
  text-align: center;
}
.careers-drop-ico {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--green);
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(0, 168, 89, .12);
}
.careers-drop-text {
  margin: 0;
  color: #55604e;
  font-size: .95rem;
  font-weight: 500;
}
.careers-browse-btn {
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green);
  background: #fff;
  color: var(--green);
  font: inherit;
  font-weight: 700;
  font-size: .88rem;
  border-radius: 999px;
  padding: .55rem 1.15rem;
}
.careers-drop-file {
  margin: .15rem 0 0;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .9rem;
}
.careers-drop-hint {
  margin: .55rem 0 0;
  color: #8a9383;
  font-size: .82rem;
}

.careers-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.careers-submit {
  border-radius: 999px;
  padding: .95rem 1.55rem;
  gap: .55rem;
  box-shadow: 0 10px 24px rgba(0, 168, 89, .28);
}
.careers-submit:hover {
  box-shadow: 0 12px 28px rgba(63, 122, 26, .32);
}
.careers-secure {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #6b7466;
  font-size: .88rem;
}
.careers-secure i { color: var(--green); }
.careers-card .form-msg { margin-top: 1rem; }

@media (max-width: 820px) {
  .careers-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .careers-eyebrow { justify-content: center; }
  .careers-lead { margin-inline: auto; }
  .careers-hero-art { order: -1; }
  .careers-hero-art img { width: min(100%, 280px); }
}
@media (max-width: 639px) {
  .careers-card { border-radius: 18px; padding: 1.15rem; }
  .careers-card-head { align-items: flex-start; }
  .careers-actions { flex-direction: column; align-items: stretch; }
  .careers-submit { width: 100%; justify-content: center; }
  .careers-secure { justify-content: center; text-align: center; }
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1400;
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 24, 18, .96);
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, .18);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .85rem 1.1rem;
}
.cookie-banner-copy {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  flex: 1 1 280px;
  min-width: 0;
}
.cookie-banner-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 168, 89, .22);
  color: #9fd45c;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.cookie-banner-copy p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
  font-weight: 500;
}
.cookie-banner-copy a {
  color: #b8e07a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-copy a:hover { color: #fff; }
.cookie-banner-accept {
  flex-shrink: 0;
  border-radius: 999px;
  padding: .65rem 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 168, 89, .35);
}
@media (max-width: 720px) {
  .cookie-banner {
    bottom: 72px;
    padding-inline: .85rem;
  }
  .cookie-banner-inner { justify-content: center; }
  .cookie-banner-accept { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: none; }
}

