/* Core site styles for static export */
:root {
  --primary: #3c8943;
  --primary-dark: #2e6d35;
  --secondary: #1a1a1a;
  --text: #2f2f2f;
  --muted: #666;
  --bg: #ffffff;
  --bg-alt: #f6f8fa;
  --white: #ffffff;
  --border: #e6e8eb;
  --radius: 10px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  margin: 0 0 14px;
  color: var(--secondary);
  line-height: 1.2;
  font-family: Outfit, Inter, Arial, sans-serif;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding-left: 18px;
}

li {
  margin-bottom: 6px;
}

.site-main {
  min-height: 60vh;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.section {
  position: relative;
  padding: 56px 0;
}

.section:nth-of-type(even) {
  background: var(--bg-alt);
}

.column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.col-100 {
  flex: 0 0 100%;
  max-width: 100%;
}

.col-50 {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.col-33 {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
}

.col-25 {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-container {
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.logo img {
  width: auto;
  max-height: 50px;
}

.main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  color: var(--secondary);
  font-weight: 600;
  font-family: Outfit, Inter, Arial, sans-serif;
}

.main-nav a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(60, 137, 67, 0.28);
}

.btn:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
}

.btn > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn > span > span {
  display: inline-flex;
  align-items: center;
}

.btn svg {
  width: 12px;
  height: 12px;
  max-width: 12px;
  max-height: 12px;
  flex: 0 0 12px;
}

/* Card-like wrappers from extracted HTML */
.column > div {
  width: 100%;
}

.column img {
  border-radius: 12px;
}

/* Center only the Algoleap AI hero CTA on home page */
.site-main > div > div > section.section:first-of-type .col-100.column > div > div:nth-child(4) > div {
  display: flex;
  justify-content: center;
}

.site-main > div > div > section.section:first-of-type .col-100.column > div > div:nth-child(4) > div > a {
  display: inline-flex;
  justify-content: center;
}

.site-main > div > div > section.section:first-of-type .col-100.column > div > div:nth-child(3) > div {
  text-align: center;
}

/* Improve readability for dense nested lists/content */
.column p,
.column li span:last-child {
  font-size: 1rem;
  color: var(--text);
}

/* Carousels / sliders (exported as simple blocks) */
[id^="carousel"] > div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

[id^="carousel"] button {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--secondary);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
}

[id^="carousel"] button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Forms */
form {
  width: 100%;
}

input,
select,
textarea,
button[type="submit"] {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d0d6dc;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(60, 137, 67, 0.16);
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 600;
}

input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

button[type="submit"] {
  background: var(--primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: var(--primary-dark);
}

.site-footer {
  background: var(--secondary);
  color: #fff;
  padding: 56px 0 26px;
}

.site-footer .section {
  padding: 20px 0;
  background: transparent;
}

.site-footer .heading,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6,
.site-footer p,
.site-footer span,
.site-footer li {
  color: #fff;
}

.site-footer a {
  color: #fff;
}

.site-footer a:hover {
  color: #a7d9ad;
}

.site-footer img {
  filter: brightness(0) invert(1);
  max-width: 240px;
}

/* Home page */
.home-page .site-main {
  background: #f4f6f4;
}

.home-page .container {
  max-width: 1240px;
}

.home-page .column img {
  border-radius: 0;
}

.home-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e1e6e1;
  backdrop-filter: none;
}

.home-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.home-page .logo img {
  max-height: 32px;
}

.home-page .main-nav ul {
  gap: 16px;
}

.home-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #1f2520;
}

.home-page .section {
  padding: 38px 0;
}

.home-page .section:nth-of-type(even) {
  background: transparent;
}

.home-page .btn {
  border-radius: 999px;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  background: #fff;
  color: #202820;
  border: 1px solid #ccd7cd;
  box-shadow: none;
}

.home-page .btn:hover {
  background: #f7faf7;
  border-color: #a8b8a8;
  color: #202820;
}

.home-page .home-hero {
  padding: 0;
}

.home-page .home-hero > div:first-child {
  display: none;
}

.home-page .home-hero .container {
  max-width: 100%;
  padding: 0;
}

.home-page .home-hero .col-100.column > div {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px 20px;
  gap: 10px;
  background-image: linear-gradient(rgba(216, 232, 220, 0.86), rgba(216, 232, 220, 0.86)),
    radial-gradient(circle at 20% 20%, rgba(89, 145, 97, 0.26), transparent 40%),
    radial-gradient(circle at 80% 50%, rgba(89, 145, 97, 0.2), transparent 44%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.65), rgba(192, 214, 196, 0.65));
}

.home-page .home-hero h1.heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0;
  color: #171d17;
}

.home-page .home-hero h1.heading span {
  color: #4c9758;
}

.home-page .home-hero .col-100.column > div > div:nth-child(2) img {
  width: 44px;
}

.home-page .home-hero p.heading {
  margin: 0;
  font-family: Outfit, Inter, Arial, sans-serif;
  font-size: 1.45rem;
  color: #1b211c;
}

.home-page .home-hero p.heading span {
  color: #4c9758;
}

.home-page .home-hero .col-100.column > div > div:nth-child(4) a img {
  width: 114px;
}

.home-page .home-ai-section,
.home-page .home-transform-section {
  background: #fff;
}

.home-page .home-studio-section,
.home-page .home-stories-section,
.home-page .home-insights-section {
  background: #eef3ef;
}

.home-page .home-ai-section .container,
.home-page .home-studio-section .container,
.home-page .home-transform-section .container {
  align-items: center;
}

.home-page .home-ai-section h2.heading,
.home-page .home-studio-section h3.heading,
.home-page .home-transform-section h3.heading {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #151b15;
}

.home-page .home-ai-section h2.heading span,
.home-page .home-studio-section h3.heading span,
.home-page .home-transform-section h3.heading span {
  color: #4c9758;
}

.home-page .home-ai-section p,
.home-page .home-studio-section p,
.home-page .home-transform-section p {
  max-width: 92%;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #303930;
  margin-bottom: 14px;
}

.home-page .home-ai-section .col-50.column > div > div:first-child img,
.home-page .home-studio-section .col-50.column > div > div:first-child img,
.home-page .home-transform-section .col-50.column > div > div:first-child img {
  width: 100%;
  border: 1px solid #d7dfd8;
}

.home-page .home-stories-section > div:first-child {
  display: none;
}

.home-page .home-stories-section .heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.home-page .home-stories-section .heading span {
  color: #4c9758;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div > div section.section {
  padding: 0;
  background: transparent;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div > div section.section .container {
  padding: 0;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div > div section.section .col-100.column > div {
  border: 1px solid #d1dbd2;
  background: #fff;
  padding: 0 0 8px;
  display: flex;
  flex-direction: column;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) b,
.home-page .home-stories-section .col-100.column > div > div:nth-child(2) br {
  display: none;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div > div section.section .col-100.column > div > div:nth-child(2) > div {
  color: #1c251d;
  font-size: 0.68rem;
  line-height: 1.35;
  padding: 6px 8px 0;
  min-height: 46px;
}

.home-page .home-stories-section .col-100.column > div > div:nth-child(3) > div > div,
.home-page .home-insights-section .col-100.column > div > div:nth-child(3) > div > div {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.home-page .home-stories-section .btn,
.home-page .home-insights-section .btn {
  background: #4a9455;
  border-color: #4a9455;
  color: #fff;
  padding: 8px 15px;
}

.home-page .home-stories-section .btn:hover,
.home-page .home-insights-section .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.home-page .home-insights-section .heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.home-page .home-insights-section .heading span {
  color: #4c9758;
}

.home-page .home-insights-section section.section {
  padding: 0;
  background: transparent;
}

.home-page .home-insights-section section.section .container {
  gap: 12px;
}

.home-page .home-insights-section .col-25.column > div {
  border: 1px solid #cfdacf;
  background: #fff;
  padding-bottom: 8px;
}

.home-page .home-insights-section .col-25.column img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.home-page .home-insights-section .col-25.column > div > div:not(:first-child) {
  padding: 0 8px;
}

.home-page .home-insights-section .col-25.column > div > div:nth-child(2) p.heading {
  margin: 7px 0 3px;
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a705d;
  font-size: 0.55rem;
}

.home-page .home-insights-section .col-25.column > div > div:nth-child(3) p.heading {
  margin: 0 0 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  color: #1e2520;
  line-height: 1.32;
}

.home-page .home-insights-section .col-25.column .btn {
  background: transparent;
  border: 0;
  color: #637966;
  padding: 0;
  font-size: 0.53rem;
}

.home-page .home-insights-section .col-25.column .btn:hover {
  color: #4a9455;
  background: transparent;
}

.home-page .home-insights-section .col-25.column .btn > span > span:first-child {
  display: none;
}

.home-page .home-career-section {
  padding: 40px 0;
}

.home-page .home-career-section > div:first-child {
  display: none;
}

.home-page .home-career-section .container {
  gap: 0;
}

.home-page .home-career-section .col-50.column {
  flex: 0 0 50%;
  max-width: 50%;
}

.home-page .home-career-section .col-50.column:first-child > div {
  background: #4c9758;
  min-height: 290px;
  display: flex;
  align-items: center;
  padding: 22px 28px;
}

.home-page .home-career-section .col-50.column:first-child > div h4,
.home-page .home-career-section .col-50.column:first-child > div .heading,
.home-page .home-career-section .col-50.column:first-child > div p {
  color: #fff;
}

.home-page .home-career-section .col-50.column:first-child > div h4 {
  font-size: 0.7rem;
  margin: 0 0 8px;
  font-weight: 400;
}

.home-page .home-career-section .col-50.column:first-child > div .heading {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  margin-bottom: 10px;
}

.home-page .home-career-section .col-50.column:first-child > div p {
  max-width: 94%;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.home-page .home-career-section .col-50.column:first-child a img {
  width: 130px;
}

.home-page .home-career-section .col-50.column:last-child > div,
.home-page .home-career-section .col-50.column:last-child img {
  height: 100%;
}

.home-page .home-career-section .col-50.column:last-child img {
  width: 100%;
  min-height: 290px;
  object-fit: cover;
}

.home-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 24px 0 14px;
  border-top: 1px solid #dfe7df;
}

.home-page .site-footer .section {
  padding: 12px 0;
}

.home-page .site-footer .heading,
.home-page .site-footer h1,
.home-page .site-footer h2,
.home-page .site-footer h3,
.home-page .site-footer h4,
.home-page .site-footer h5,
.home-page .site-footer h6,
.home-page .site-footer p,
.home-page .site-footer span,
.home-page .site-footer li,
.home-page .site-footer a {
  color: #314635;
}

.home-page .site-footer a:hover {
  color: var(--primary);
}

.home-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.home-page .site-footer .container {
  align-items: flex-start;
}

.home-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.home-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.home-page .site-footer h3,
.home-page .site-footer p,
.home-page .site-footer span,
.home-page .site-footer a {
  font-size: 0.8rem;
}

/* Our studio page */
.our-studio-page .site-main {
  background: #f4f7f4;
}

.our-studio-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.our-studio-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.our-studio-page .logo img {
  max-height: 34px;
}

.our-studio-page .main-nav ul {
  gap: 16px;
}

.our-studio-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #222;
}

.our-studio-page .main-nav li#menu-item-1242 a {
  color: var(--primary);
  font-weight: 700;
}

.our-studio-page .section {
  padding: 28px 0;
}

.our-studio-page .section:nth-of-type(even) {
  background: transparent;
}

.our-studio-page .studio-hero {
  padding: 0;
}

.our-studio-page .studio-hero .container {
  max-width: 100%;
  padding: 0;
}

.our-studio-page .studio-hero .col-100.column > div {
  min-height: 290px;
  background-image: linear-gradient(rgba(204, 219, 207, 0.84), rgba(204, 219, 207, 0.84)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-7.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
}

.our-studio-page .studio-hero .heading {
  margin: 0;
  color: #141b14;
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.1;
  font-weight: 500;
}

.our-studio-page .studio-hero .heading span {
  color: #4a9354;
}

.our-studio-page .studio-hero .col-100.column > div > div:nth-child(2) > div {
  color: #2d372e;
  font-size: 0.77rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.45;
}

.our-studio-page .studio-hero a img {
  width: 102px;
}

.our-studio-page .studio-intro,
.our-studio-page .studio-contact,
.our-studio-page .studio-insights {
  background: #fff;
}

.our-studio-page .studio-approach,
.our-studio-page .studio-success {
  background: #edf2ee;
}

.our-studio-page .studio-intro .container,
.our-studio-page .studio-contact .container {
  align-items: center;
  gap: 16px;
}

.our-studio-page .studio-intro .heading,
.our-studio-page .studio-intro-cards .heading,
.our-studio-page .studio-approach .heading,
.our-studio-page .studio-success .heading,
.our-studio-page .studio-contact .heading,
.our-studio-page .studio-insights .heading {
  font-size: clamp(1.4rem, 2.7vw, 2rem);
  line-height: 1.12;
  color: #152015;
  margin-bottom: 10px;
  font-weight: 500;
}

.our-studio-page .studio-intro .heading span,
.our-studio-page .studio-intro-cards .heading span,
.our-studio-page .studio-approach .heading span,
.our-studio-page .studio-success .heading span,
.our-studio-page .studio-contact .heading span,
.our-studio-page .studio-insights .heading span {
  color: #4a9354;
}

.our-studio-page .studio-intro p,
.our-studio-page .studio-intro-cards p,
.our-studio-page .studio-approach p,
.our-studio-page .studio-success p,
.our-studio-page .studio-contact p,
.our-studio-page .studio-insights p {
  font-size: 0.74rem;
  line-height: 1.45;
  color: #2c352d;
}

.our-studio-page .studio-intro-cards {
  padding: 0;
  background: transparent;
}

.our-studio-page .studio-intro-cards .section {
  padding: 0;
  background: transparent;
}

.our-studio-page .studio-intro-cards .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.our-studio-page .studio-intro-cards .col-50.column {
  max-width: none;
}

.our-studio-page .studio-intro-cards .col-50.column > div {
  border: 1px solid #d0d9d1;
  background: #fff;
  padding: 8px;
  height: 100%;
}

.our-studio-page .studio-intro-cards img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.our-studio-page .studio-intro .btn {
  border: 1px solid #4b9557;
  background: #4b9557;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: none;
}

.our-studio-page .studio-intro .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.our-studio-page .studio-approach {
  padding-top: 20px;
}

.our-studio-page .studio-approach > .container .heading {
  margin-bottom: 6px;
}

.our-studio-page .studio-approach-flow {
  padding: 8px 0 0;
  background: transparent;
}

.our-studio-page .studio-approach-flow .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.our-studio-page .studio-approach-flow .column {
  position: relative;
}

.our-studio-page .studio-approach-flow .column > div {
  background: #dbe7dc;
  border: 1px solid #c3d4c4;
  padding: 8px;
  text-align: center;
  min-height: 108px;
}

.our-studio-page .studio-approach-flow .column img {
  width: 36px;
  margin: 0 auto;
}

.our-studio-page .studio-approach-flow .column p {
  margin: 6px 0 0;
  font-size: 0.6rem;
  font-weight: 600;
  color: #203022;
}

.our-studio-page .studio-approach-flow .column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #8fb996;
  transform: translateY(-50%);
}

.our-studio-page .studio-success {
  padding-top: 20px;
}

.our-studio-page .studio-success-grid {
  padding: 4px 0 0;
  background: transparent;
}

.our-studio-page .studio-success-grid .container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.our-studio-page .studio-success-grid .col-33.column {
  max-width: none;
}

.our-studio-page .studio-success-grid .col-33.column > div {
  border: 1px solid #8fb996;
  background: #fff;
  padding-bottom: 0;
  height: 100%;
  min-height: 335px;
  display: flex;
  flex-direction: column;
}

.our-studio-page .studio-success-grid .col-33.column img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.our-studio-page .studio-success-grid .col-33.column > div > div:first-child {
  position: relative;
  padding: 10px 10px 0;
  border-bottom: 1px solid #8fb996;
}

.our-studio-page .studio-success-grid .col-33.column > div > div:not(:first-child) {
  padding: 0 10px;
}

.our-studio-page .studio-success-grid .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  line-height: 1.28;
  margin: 9px 0 7px;
  color: #3f7f4a;
  font-weight: 700;
}

.our-studio-page .studio-success-grid .btn {
  background: #edf4ed;
  color: #5a735f;
  border: 1px solid #e0e9e0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.48rem;
  letter-spacing: 0.02em;
  box-shadow: none;
  margin: 8px 0 9px;
}

.our-studio-page .studio-success-grid .btn > span > span:first-child {
  display: none;
}

.our-studio-page .studio-success-grid .col-33.column > div > div:last-child {
  padding-bottom: 10px;
}

.our-studio-page .studio-success-grid .col-33.column p {
  margin: 0;
  color: #2a332c;
  font-size: 0.6rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:first-of-type .col-33.column:first-child > div > div:not(:first-child):not(:nth-child(2)):not(:nth-last-child(2)):not(:last-child) {
  display: none;
}

.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:nth-of-type(2) .col-33.column:first-child > div > div:not(:first-child):not(:nth-child(2)):not(:nth-last-child(2)):not(:last-child) {
  display: none;
}

.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:first-of-type .col-33.column:nth-child(2) > div > div:first-child::after,
.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:first-of-type .col-33.column:nth-child(3) > div > div:first-child::after {
  position: absolute;
  left: 10px;
  bottom: 9px;
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid #e0e9e0;
  background: #edf4ed;
  color: #5a735f;
  font-size: 0.48rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:first-of-type .col-33.column:nth-child(2) > div > div:first-child::after {
  content: "Multimodal AI";
}

.our-studio-page .studio-success > .container > .col-100.column > div > .studio-success-grid:first-of-type .col-33.column:nth-child(3) > div > div:first-child::after {
  content: "Generative AI";
}

.our-studio-page .studio-success-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.our-studio-page .studio-success-cta a img {
  width: 104px;
}

.our-studio-page .studio-contact {
  padding-top: 16px;
}

.our-studio-page .studio-contact > div:first-child {
  display: none;
}

.our-studio-page .studio-contact input,
.our-studio-page .studio-contact textarea {
  border-radius: 0;
  border: 1px solid #d4ddd4;
  padding: 8px 10px;
  font-size: 0.72rem;
  background: #fff;
}

.our-studio-page .studio-contact textarea {
  min-height: 68px;
}

.our-studio-page .studio-contact button[type="submit"] {
  border-radius: 999px;
  font-size: 0.56rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.our-studio-page .studio-contact fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.our-studio-page .studio-contact legend {
  display: none;
}

.our-studio-page .studio-contact label {
  font-size: 0.62rem;
  line-height: 1.35;
}

.our-studio-page .studio-contact .col-50.column:first-child > div {
  background-image: linear-gradient(rgba(55, 129, 67, 0.9), rgba(55, 129, 67, 0.9)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  padding: 14px;
}

.our-studio-page .studio-contact .col-50.column:first-child label,
.our-studio-page .studio-contact .col-50.column:first-child p,
.our-studio-page .studio-contact .col-50.column:first-child span {
  color: #fff;
}

.our-studio-page .studio-contact .col-50.column:last-child > div {
  min-height: 100%;
  background-image: linear-gradient(rgba(233, 240, 234, 0.82), rgba(233, 240, 234, 0.82)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-7.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px;
}

.our-studio-page .studio-contact .col-50.column:last-child p {
  margin: 0;
}

.our-studio-page .studio-contact .col-50.column:last-child .heading {
  max-width: 320px;
}

.our-studio-page .studio-insights {
  padding-top: 18px;
}

.our-studio-page .studio-insights .heading {
  margin-bottom: 6px;
}

.our-studio-page .studio-insights-grid {
  padding: 0;
  background: transparent;
}

.our-studio-page .studio-insights-grid .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.our-studio-page .studio-insights-grid .col-25.column {
  max-width: none;
}

.our-studio-page .studio-insights-grid .col-25.column > div {
  border: 1px solid #cfdacf;
  background: #fff;
  padding-bottom: 8px;
}

.our-studio-page .studio-insights-grid .col-25.column img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.our-studio-page .studio-insights-grid .col-25.column > div > div:not(:first-child) {
  padding: 0 8px;
}

.our-studio-page .studio-insights-grid .col-25.column > div > div:nth-child(2) .heading {
  margin: 7px 0 3px;
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a705d;
  font-size: 0.55rem;
}

.our-studio-page .studio-insights-grid .col-25.column > div > div:nth-child(3) .heading {
  margin: 0 0 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  color: #1e2520;
  line-height: 1.32;
}

.our-studio-page .studio-insights-grid .btn {
  background: transparent;
  border: 0;
  color: #637966;
  padding: 0;
  font-size: 0.53rem;
  box-shadow: none;
}

.our-studio-page .studio-insights-grid .btn > span > span:first-child {
  display: none;
}

.our-studio-page .studio-insights-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.our-studio-page .studio-insights-cta .btn {
  border: 1px solid #4b9557;
  background: #4b9557;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 7px 15px;
  box-shadow: none;
}

.our-studio-page .studio-insights-cta .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.our-studio-page .studio-insights-cta .btn > span > span:first-child {
  display: none;
}

.our-studio-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.our-studio-page .site-footer .section {
  padding: 14px 0;
}

.our-studio-page .site-footer .heading,
.our-studio-page .site-footer h1,
.our-studio-page .site-footer h2,
.our-studio-page .site-footer h3,
.our-studio-page .site-footer h4,
.our-studio-page .site-footer h5,
.our-studio-page .site-footer h6,
.our-studio-page .site-footer p,
.our-studio-page .site-footer span,
.our-studio-page .site-footer li,
.our-studio-page .site-footer a {
  color: #314635;
}

.our-studio-page .site-footer a:hover {
  color: var(--primary);
}

.our-studio-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.our-studio-page .site-footer .container {
  align-items: flex-start;
}

.our-studio-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
  text-decoration: none;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.our-studio-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.our-studio-page .site-footer h3,
.our-studio-page .site-footer p,
.our-studio-page .site-footer span,
.our-studio-page .site-footer a {
  font-size: 0.8rem;
}

/* What we do page */
.what-we-do-page .what-main > div > h1 {
  display: none;
}

.what-we-do-page .site-main {
  background: #f4f7f4;
}

.what-we-do-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.what-we-do-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.what-we-do-page .logo img {
  max-height: 34px;
}

.what-we-do-page .main-nav ul {
  gap: 16px;
}

.what-we-do-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #222;
}

.what-we-do-page .main-nav li#menu-item-538 a {
  color: var(--primary);
  font-weight: 700;
}

.what-we-do-page .section {
  padding: 28px 0;
}

.what-we-do-page .section:nth-of-type(even) {
  background: transparent;
}

.what-we-do-page .what-hero {
  padding: 0;
}

.what-we-do-page .what-hero .container {
  max-width: 100%;
  padding: 0;
}

.what-we-do-page .what-hero .col-100.column > div {
  min-height: 330px;
  background-image: linear-gradient(rgba(208, 223, 210, 0.83), rgba(208, 223, 210, 0.83)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-3.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 20px;
}

.what-we-do-page .what-hero .heading {
  margin: 0;
  color: #141b14;
  font-size: clamp(1.8rem, 3.4vw, 2.45rem);
  line-height: 1.1;
  font-weight: 500;
  max-width: 640px;
  letter-spacing: -0.01em;
}

.what-we-do-page .what-hero .heading span {
  color: #4a9354;
}

.what-we-do-page .what-hero p {
  margin: 0;
  color: #2d372e;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 520px;
}

.what-we-do-page .what-hero a img {
  width: 98px;
}

.what-we-do-page .what-intro {
  background: #fff;
}

.what-we-do-page .what-intro .section {
  padding: 0;
  background: transparent;
}

.what-we-do-page .what-intro .container {
  align-items: center;
}

.what-we-do-page .what-intro .heading,
.what-we-do-page .what-block .heading,
.what-we-do-page .what-service-mgmt > .container .heading,
.what-we-do-page .what-service-block .heading {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  color: #152015;
  margin-bottom: 10px;
  font-weight: 500;
}

.what-we-do-page .what-intro .heading span,
.what-we-do-page .what-block .heading span,
.what-we-do-page .what-service-block .heading span {
  color: #4a9354;
}

.what-we-do-page .what-intro p,
.what-we-do-page .what-block p,
.what-we-do-page .what-service-mgmt > .container p,
.what-we-do-page .what-service-block p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #2c352d;
}

.what-we-do-page .what-intro img,
.what-we-do-page .what-block img,
.what-we-do-page .what-service-block img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.what-we-do-page .what-block a img,
.what-we-do-page .what-service-block a img {
  width: 102px;
}

.btn-outline-cta,
.what-we-do-page .what-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid #67aa73;
  border-radius: 999px;
  background: #f6fbf6;
  color: #4a9354;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 8px 8px 8px 14px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-cta > span:last-child,
.what-we-do-page .what-cta-btn > span:last-child {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #4a9354;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 700;
}

.btn-outline-cta:hover,
.what-we-do-page .what-cta-btn:hover {
  background: #edf7ee;
  border-color: #4a9354;
  color: #397842;
}

.btn-outline-cta:hover > span:last-child,
.what-we-do-page .what-cta-btn:hover > span:last-child {
  background: #397842;
}

.what-we-do-page .what-service-mgmt {
  background: #edf2ee;
  padding-top: 20px;
}

.what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(1),
.what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(2) {
  text-align: center;
}

.what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(1) .heading {
  margin-bottom: 6px;
}

.what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(2) p {
  margin: 0 auto 8px;
  max-width: 860px;
}

.what-we-do-page .what-service-block {
  padding: 8px 0 0;
  background: transparent;
}

.what-we-do-page .what-service-block .container {
  align-items: center;
}

.what-we-do-page .what-service-block .col-50.column > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.what-we-do-page .what-service-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.what-we-do-page .what-service-block li {
  margin: 0;
  display: flex;
  gap: 7px;
}

.what-we-do-page .what-service-block li svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9354;
  margin-top: 5px;
}

.what-we-do-page .what-service-block li span:last-child {
  font-size: 0.73rem;
  line-height: 1.4;
}

.what-we-do-page .what-transform-banner {
  padding: 16px 0 0;
}

.what-we-do-page .what-transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.what-we-do-page .what-transform-banner .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.what-we-do-page .what-transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.what-we-do-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.what-we-do-page .site-footer .section {
  padding: 14px 0;
}

.what-we-do-page .site-footer .heading,
.what-we-do-page .site-footer h1,
.what-we-do-page .site-footer h2,
.what-we-do-page .site-footer h3,
.what-we-do-page .site-footer h4,
.what-we-do-page .site-footer h5,
.what-we-do-page .site-footer h6,
.what-we-do-page .site-footer p,
.what-we-do-page .site-footer span,
.what-we-do-page .site-footer li,
.what-we-do-page .site-footer a {
  color: #314635;
}

.what-we-do-page .site-footer a:hover {
  color: var(--primary);
}

.what-we-do-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.what-we-do-page .site-footer .container {
  align-items: flex-start;
}

.what-we-do-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.what-we-do-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.what-we-do-page .site-footer h3,
.what-we-do-page .site-footer p,
.what-we-do-page .site-footer span,
.what-we-do-page .site-footer a {
  font-size: 0.8rem;
}

/* Careers page */
.careers-page .careers-main > div > h1 {
  display: none;
}

.careers-page .site-main {
  background: #f4f7f4;
}

.careers-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.careers-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.careers-page .logo img {
  max-height: 34px;
}

.careers-page .main-nav ul {
  gap: 16px;
}

.careers-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #222;
}

.careers-page .main-nav li#menu-item-551 a {
  color: var(--primary);
  font-weight: 700;
}

.careers-page .section {
  padding: 28px 0;
}

.careers-page .section:nth-of-type(even) {
  background: transparent;
}

.careers-page .careers-hero {
  padding: 0;
}

.careers-page .careers-hero .container {
  max-width: 100%;
  padding: 0;
}

.careers-page .careers-hero .col-100.column > div {
  min-height: 322px;
  background-image: linear-gradient(rgba(206, 221, 209, 0.83), rgba(206, 221, 209, 0.83)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 28px 20px;
}

.careers-page .careers-hero .heading {
  margin: 0;
  color: #141b14;
  font-size: clamp(1.75rem, 3.3vw, 2.45rem);
  line-height: 1.1;
  font-weight: 500;
  max-width: 620px;
  letter-spacing: -0.01em;
}

.careers-page .careers-hero .heading span {
  color: #4a9354;
}

.careers-page .careers-hero p {
  margin: 0;
  color: #2d372e;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 470px;
}

.careers-page .careers-hero a img {
  width: 96px;
}

.careers-page .careers-empower,
.careers-page .careers-growth,
.careers-page .careers-open-app {
  background: #fff;
}

.careers-page .careers-ratings,
.careers-page .careers-featured,
.careers-page .careers-dei {
  background: #edf2ee;
}

.careers-page .careers-empower .container,
.careers-page .careers-growth .container,
.careers-page .careers-open-app .container,
.careers-page .careers-dei .container {
  align-items: center;
}

.careers-page .careers-empower .heading,
.careers-page .careers-growth .heading,
.careers-page .careers-featured .heading,
.careers-page .careers-open-app .heading,
.careers-page .careers-dei .heading {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  color: #152015;
  margin-bottom: 10px;
  font-weight: 500;
}

.careers-page .careers-empower .heading span,
.careers-page .careers-growth .heading span,
.careers-page .careers-open-app .heading span {
  color: #4a9354;
}

.careers-page .careers-empower p,
.careers-page .careers-growth p,
.careers-page .careers-open-app p,
.careers-page .careers-dei p {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #2c352d;
}

.careers-page .careers-empower img,
.careers-page .careers-growth img,
.careers-page .careers-open-app img,
.careers-page .careers-dei img {
  width: 100%;
  border-radius: 0;
}

.careers-page .careers-empower a img {
  width: 92px;
}

.careers-page .careers-ratings {
  padding-top: 16px;
}

.careers-page .careers-ratings > div:first-child {
  display: none;
}

.careers-page .careers-ratings-grid {
  padding: 0;
  background: transparent;
}

.careers-page .careers-ratings-grid .container {
  gap: 0;
  border: 1px solid #d2ddd3;
  background: #fff;
}

.careers-page .careers-ratings-grid .col-25.column {
  padding: 12px;
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  align-items: center;
}

.careers-page .careers-ratings-grid .col-25.column + .col-25.column {
  border-left: 1px solid #e2e9e2;
}

.careers-page .careers-ratings-grid .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.careers-page .careers-ratings-grid .col-25.column:nth-child(1) > div > div:nth-child(2) img {
  max-width: 150px;
}

.careers-page .careers-ratings-grid .col-25.column:nth-child(1) > div > div:nth-child(3) img {
  max-width: 64px;
}

.careers-page .careers-ratings-grid .col-25.column:nth-child(2) img,
.careers-page .careers-ratings-grid .col-25.column:nth-child(4) img {
  width: 80px;
}

.careers-page .careers-ratings-grid .col-25.column:nth-child(3) img {
  max-width: 62px;
}

.careers-page .careers-ratings-grid .col-25.column:nth-child(4) .heading {
  font-size: 0.9rem;
}

.careers-page .careers-growth ul,
.careers-page .careers-dei ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.careers-page .careers-growth li,
.careers-page .careers-dei li {
  margin: 0;
  display: flex;
  gap: 7px;
}

.careers-page .careers-growth li svg,
.careers-page .careers-dei li svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9354;
  margin-top: 5px;
}

.careers-page .careers-growth li span:last-child,
.careers-page .careers-dei li span:last-child {
  font-size: 0.73rem;
  line-height: 1.4;
}

.careers-page .careers-featured > div:first-child {
  display: none;
}

.careers-page .careers-jobs-grid {
  padding: 0;
  background: transparent;
}

.careers-page .careers-jobs-grid .container {
  gap: 0;
  border: 1px solid #cad8cb;
  background: #fff;
}

.careers-page .careers-jobs-grid .col-25.column {
  padding: 10px 12px;
  flex: 0 0 25%;
  max-width: 25%;
  display: flex;
  align-items: stretch;
}

.careers-page .careers-jobs-grid .col-25.column + .col-25.column {
  border-left: 1px solid #d8e3d9;
}

.careers-page .careers-jobs-grid .col-25.column > div > div:nth-child(1) .heading {
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a705d;
  font-size: 0.56rem;
  margin: 0 0 5px;
}

.careers-page .careers-jobs-grid .col-25.column > div > div:nth-child(2) .heading {
  font-family: Inter, Arial, sans-serif;
  color: #1f2820;
  font-size: 0.88rem;
  line-height: 1.2;
  margin: 0 0 6px;
  min-height: 42px;
}

.careers-page .careers-jobs-grid .col-25.column > div > div:nth-child(3) .heading {
  font-family: Inter, Arial, sans-serif;
  color: #6a7b6d;
  font-size: 0.62rem;
  margin: 0;
}

.careers-page .careers-jobs-grid .col-25.column > div {
  width: 100%;
  min-height: 118px;
}

.careers-page .careers-featured .col-100.column > div > div:nth-child(3) {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.careers-page .careers-featured .col-100.column > div > div:nth-child(3) a img {
  width: 112px;
}

.careers-page .careers-open-app .btn {
  padding: 7px 14px;
  border: 1px solid #4b9557;
  background: #4b9557;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.careers-page .careers-open-app .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.careers-page .careers-open-app .btn > span > span:first-child {
  display: none;
}

.careers-page .careers-dei > div:first-child {
  display: none;
}

.careers-page .careers-dei .col-50.column:first-child p:first-of-type {
  font-weight: 600;
}

.careers-page .careers-transform-banner {
  padding: 16px 0 0;
}

.careers-page .careers-transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.careers-page .careers-transform-banner .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.careers-page .careers-transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.careers-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.careers-page .site-footer .section {
  padding: 14px 0;
}

.careers-page .site-footer .heading,
.careers-page .site-footer h1,
.careers-page .site-footer h2,
.careers-page .site-footer h3,
.careers-page .site-footer h4,
.careers-page .site-footer h5,
.careers-page .site-footer h6,
.careers-page .site-footer p,
.careers-page .site-footer span,
.careers-page .site-footer li,
.careers-page .site-footer a {
  color: #314635;
}

.careers-page .site-footer a:hover {
  color: var(--primary);
}

.careers-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.careers-page .site-footer .container {
  align-items: flex-start;
}

.careers-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div >span > a svg {
  display: none;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.careers-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.careers-page .site-footer h3,
.careers-page .site-footer p,
.careers-page .site-footer span,
.careers-page .site-footer a {
  font-size: 0.8rem;
}

/* Algoleap AI page */
.ai-page .ai-main > div > h1 {
  display: none;
}

.ai-page .site-main {
  background: #f3f6f3;
}

.ai-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.ai-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.ai-page .logo img {
  max-height: 34px;
}

.ai-page .main-nav ul {
  gap: 16px;
}

.ai-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #222;
}

.ai-page .main-nav li#menu-item-537 a {
  color: var(--primary);
  font-weight: 700;
}

.ai-page .section {
  padding: 26px 0;
}

.ai-page .section:nth-of-type(even) {
  background: transparent;
}

.ai-page .ai-hero {
  padding: 0;
}

.ai-page .ai-hero > div:first-child {
  display: none;
}

.ai-page .ai-hero .container {
  max-width: 100%;
  padding: 0;
}

.ai-page .ai-hero .col-100.column > div {
  min-height: 276px;
  background-image: linear-gradient(rgba(228, 234, 229, 0.9), rgba(228, 234, 229, 0.9)),
    linear-gradient(120deg, rgba(188, 207, 191, 0.35), rgba(215, 226, 216, 0.35));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 22px 20px;
}

.ai-page .ai-hero h2.heading {
  margin: 0;
  font-size: clamp(1.95rem, 3.8vw, 2.85rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #151c16;
}

.ai-page .ai-hero h2.heading span {
  color: #4c9758;
}

.ai-page .ai-hero h3.heading {
  margin: 0;
  color: #2b352c;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  max-width: 620px;
  line-height: 1.4;
}

.ai-page .ai-hero a img {
  width: 74px;
}

.ai-page .ai-discovery {
  background: #fff;
}

.ai-page .ai-discovery .section {
  padding: 0;
  background: transparent;
}

.ai-page .ai-discovery .container {
  align-items: center;
}

.ai-page .ai-discovery .heading {
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  font-weight: 500;
  color: #162016;
  margin-bottom: 10px;
}

.ai-page .ai-discovery .heading span {
  color: #4c9758;
}

.ai-page .ai-discovery p {
  font-size: 0.77rem;
  line-height: 1.45;
  color: #2d362e;
  margin-bottom: 8px;
}

.ai-page .ai-discovery img {
  width: 100%;
  border-radius: 0;
}

.ai-page .ai-catalog {
  background: #edf2ee;
  padding-top: 16px;
}

.ai-page .ai-catalog .col-100.column > div > div:nth-child(1),
.ai-page .ai-catalog .col-100.column > div > div:nth-child(2) {
  text-align: center;
}

.ai-page .ai-catalog .col-100.column > div > div:nth-child(1) .heading {
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  margin-bottom: 6px;
}

.ai-page .ai-catalog .col-100.column > div > div:nth-child(1) .heading span {
  color: #4c9758;
}

.ai-page .ai-catalog .col-100.column > div > div:nth-child(2) p {
  font-size: 0.72rem;
  color: #2d372e;
  line-height: 1.38;
  margin: 0 auto 8px;
  max-width: 700px;
}

.ai-page .ai-catalog-row {
  padding: 0;
  background: transparent;
}

.ai-page .ai-catalog-row .container {
  gap: 8px;
}

.ai-page .ai-catalog-row .col-50.column > div {
  background-image: linear-gradient(rgba(49, 130, 66, 0.78), rgba(49, 130, 66, 0.78)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #80ad86;
  min-height: 106px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-page .ai-catalog-row .col-100.column > div {
  background-image: linear-gradient(rgba(49, 130, 66, 0.78), rgba(49, 130, 66, 0.78)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  border: 1px solid #80ad86;
  min-height: 92px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-page .ai-catalog-row .heading,
.ai-page .ai-catalog-row p,
.ai-page .ai-catalog-row .col-50.column > div > div:nth-child(2) > div,
.ai-page .ai-catalog-row .col-100.column > div > div:nth-child(2) > div {
  color: #fff;
}

.ai-page .ai-catalog-row .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ai-page .ai-catalog-row p,
.ai-page .ai-catalog-row .col-50.column > div > div:nth-child(2) > div,
.ai-page .ai-catalog-row .col-100.column > div > div:nth-child(2) > div {
  font-size: 0.66rem;
  line-height: 1.35;
  margin: 0;
}

.ai-page .ai-catalog-cta > div > div {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.ai-page .ai-catalog-cta .btn {
  padding: 7px 15px;
  border: 1px solid #4b9557;
  background: #4b9557;
  color: #fff;
  box-shadow: none;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.ai-page .ai-catalog-cta .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.ai-page .ai-catalog-cta .btn > span > span:first-child {
  display: none;
}

.ai-page .ai-alliances {
  background: #f9faf9;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ai-page .ai-alliances .heading {
  text-align: center;
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
}

.ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div:first-child {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div:first-child > div {
  flex: 1 1 0;
  min-width: 0;
}

.ai-page .ai-alliances figure {
  margin: 0;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-page .ai-alliances img {
  width: 100%;
  max-height: 18px;
  object-fit: contain;
}

.ai-page .ai-contact {
  background: #fff;
  padding-top: 12px;
}

.ai-page .ai-contact > div:first-child {
  display: none;
}

.ai-page .ai-contact-wrap {
  padding: 0;
  background: transparent;
}

.ai-page .ai-contact-wrap .container {
  align-items: flex-start;
}

.ai-page .ai-contact-wrap .heading {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin-bottom: 10px;
}

.ai-page .ai-contact-wrap fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

.ai-page .ai-contact-wrap legend {
  display: none;
}

.ai-page .ai-contact-wrap label {
  font-size: 0.68rem;
  color: #2a352c;
}

.ai-page .ai-contact-wrap input,
.ai-page .ai-contact-wrap textarea {
  border-radius: 0;
  padding: 8px 9px;
  font-size: 0.72rem;
}

.ai-page .ai-contact-wrap textarea {
  min-height: 72px;
}

.ai-page .ai-contact-wrap button[type="submit"] {
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.ai-page .ai-contact-wrap .col-50.column:last-child img {
  width: 100%;
  border-radius: 0;
}

.ai-page .ai-transform-banner {
  padding: 16px 0 0;
}

.ai-page .ai-transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.ai-page .ai-transform-banner .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.ai-page .ai-transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.ai-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.ai-page .site-footer .section {
  padding: 14px 0;
}

.ai-page .site-footer .heading,
.ai-page .site-footer h1,
.ai-page .site-footer h2,
.ai-page .site-footer h3,
.ai-page .site-footer h4,
.ai-page .site-footer h5,
.ai-page .site-footer h6,
.ai-page .site-footer p,
.ai-page .site-footer span,
.ai-page .site-footer li,
.ai-page .site-footer a {
  color: #314635;
}

.ai-page .site-footer a:hover {
  color: var(--primary);
}

.ai-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.ai-page .site-footer .container {
  align-items: flex-start;
}

.ai-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.ai-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.ai-page .site-footer h3,
.ai-page .site-footer p,
.ai-page .site-footer span,
.ai-page .site-footer a {
  font-size: 0.8rem;
}

/* Who are we page */
.who-page .who-main > div > h1 {
  display: none;
}

.who-page .site-main {
  background: #f4f7f4;
}

.who-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.who-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.who-page .logo img {
  max-height: 34px;
}

.who-page .main-nav ul {
  gap: 16px;
}

.who-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #222;
}

.who-page .main-nav li#menu-item-560 a {
  color: var(--primary);
  font-weight: 700;
}

.who-page .section {
  padding: 30px 0;
}

.who-page .section:nth-of-type(even) {
  background: transparent;
}

.who-page .who-hero {
  padding: 0;
}

.who-page .who-hero .container {
  max-width: 100%;
  padding: 0;
}

.who-page .who-hero .col-100.column > div {
  min-height: 290px;
  background-image: linear-gradient(rgba(214, 225, 215, 0.86), rgba(214, 225, 215, 0.86)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 30px 20px;
}

.who-page .who-hero .heading {
  margin: 0;
  color: #141b14;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
  font-weight: 500;
}

.who-page .who-hero .heading span {
  color: #4a9354;
}

.who-page .who-hero .col-100.column > div > div:nth-child(2) > div {
  color: #2b352c;
  font-size: 0.82rem;
  line-height: 1.45;
}

.who-page .who-hero a img {
  width: 120px;
}

.who-page .who-company {
  padding-top: 24px;
}

.who-page .who-company .col-100.column > div > div:nth-child(1),
.who-page .who-company .col-100.column > div > div:nth-child(2) {
  text-align: center;
}

.who-page .who-company .col-100.column > div > div:nth-child(1) .heading {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin-bottom: 6px;
}

.who-page .who-company .col-100.column > div > div:nth-child(1) .heading span {
  color: #4a9354;
}

.who-page .who-company .col-100.column > div > div:nth-child(2) > div {
  font-size: 0.74rem;
  color: #2f3a31;
  line-height: 1.45;
}

.who-page .who-company-grid {
  padding: 10px 0 0;
}

.who-page .who-company-grid .container {
  gap: 14px;
}

.who-page .who-company-grid .col-50.column > div {
  border: 1px solid #d2dbd2;
  background: #fff;
  border-radius: 8px;
  padding: 12px 12px 10px;
  height: 100%;
}

.who-page .who-company-grid .col-50.column > div > div:nth-child(1) .heading {
  color: #4a9354;
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 4px;
}

.who-page .who-company-grid .col-50.column > div > div:nth-child(2) .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  color: #1f2821;
  margin-bottom: 8px;
}

.who-page .who-company-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.who-page .who-company-grid li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
}

.who-page .who-company-grid li > span:first-child {
  margin-top: 5px;
}

.who-page .who-company-grid li svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9354;
}

.who-page .who-company-grid li span:last-child {
  font-size: 0.71rem;
  line-height: 1.4;
  color: #29332a;
}

.who-page .who-leadership .heading {
  text-align: center;
  font-size: clamp(1.45rem, 2.7vw, 1.95rem);
  margin-bottom: 8px;
}

.who-page .who-leadership .heading span {
  color: #4a9354;
}

.who-page .who-leadership [id^="slide-content"] .section {
  padding: 0;
  background: transparent;
}

.who-page .who-leadership [id^="carousel"] > div,
.who-page .who-cop-grid [id^="carousel"] > div {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 0;
}

.who-page [id^="carousel"] > .who-slider-track {
  display: block;
  overflow: hidden;
  padding-bottom: 0;
  transition: min-height 0.25s ease;
}

.who-page [id^="carousel"] > .who-slider-track > [id^="slide-content"] {
  display: none;
}

.who-page [id^="carousel"] > .who-slider-track > [id^="slide-content"].who-slide-active {
  display: block;
}

.who-page .who-slider-empty-column {
  display: none !important;
}

.who-page .who-slider-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.who-page .who-slider-btn {
  width: 34px;
  height: 34px;
  border: 1px solid #b9c8bb;
  border-radius: 999px;
  background: #f7faf7;
  color: #2f5536;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.who-page .who-slider-btn:hover {
  border-color: #4a9354;
  color: #4a9354;
}

.who-page .who-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.who-page .who-slider-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #c1cfc3;
  cursor: pointer;
  padding: 0;
}

.who-page .who-slider-dot.is-active {
  background: #4a9354;
}

.who-page .who-leadership [id^="carousel"] > div > [id^="slide-content"],
.who-page .who-cop-grid [id^="carousel"] > div > [id^="slide-content"] {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.who-page .who-leadership [id^="slide-content"] .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.who-page .who-leadership [id^="slide-content"] .section:not(:has(img)) {
  display: none;
}

.who-page .who-leadership .col-25.column > div {
  min-height: 0;
  border: 1px solid #d2dbd3;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.who-page .who-leadership .col-25.column {
  flex: initial;
  max-width: none;
  min-width: 0;
  scroll-snap-align: start;
}

.who-page .who-leadership .col-25.column:not(:has(img)) {
  display: none;
}

.who-page .who-leadership .col-25.column img {
  width: 100%;
  border-radius: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

.who-page .who-navigating,
.who-page .who-delivery,
.who-page .who-impact {
  background: #fff;
}

.who-page .who-tech-role,
.who-page .who-role-based,
.who-page .who-news,
.who-page .who-cop-grid {
  background: #eef3ef;
}

.who-page .who-navigating .container,
.who-page .who-delivery .container,
.who-page .who-role-based .container,
.who-page .who-impact .container {
  align-items: center;
}

.who-page .who-navigating .heading,
.who-page .who-delivery .heading,
.who-page .who-role-based .heading,
.who-page .who-tech-role .heading,
.who-page .who-impact .heading,
.who-page .who-cop-title .heading,
.who-page .who-news .heading {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.1;
  color: #152016;
  margin-bottom: 10px;
  font-weight: 500;
}

.who-page .who-navigating .heading span,
.who-page .who-delivery .heading span,
.who-page .who-role-based .heading span,
.who-page .who-tech-role .heading span,
.who-page .who-impact .heading span {
  color: #4a9354;
}

.who-page .who-navigating .col-50.column > div > div:nth-child(2) > div,
.who-page .who-tech-role .col-100.column > div > div:nth-child(2) > div,
.who-page .who-delivery p,
.who-page .who-role-based p,
.who-page .who-impact p,
.who-page .who-cop-title p {
  font-size: 0.76rem;
  line-height: 1.45;
  color: #2c352d;
}

.who-page .who-navigating img,
.who-page .who-delivery img,
.who-page .who-role-based img,
.who-page .who-impact img {
  width: 100%;
  border-radius: 0;
}

.who-page .who-tech-role > div:first-child,
.who-page .who-role-based > div:first-child {
  display: none;
}

.who-page .who-tech-role .section {
  padding: 8px 0 0;
  background: transparent;
}

.who-page .who-tech-role .col-33.column > div {
  border: 1px solid #d0d9d1;
  background: #fff;
  padding: 10px;
  height: 100%;
}

.who-page .who-tech-role .col-33.column > div > div:nth-child(1) .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.who-page .who-tech-role .col-33.column img {
  width: 40px;
}

.who-page .who-tech-role ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-page .who-tech-role li {
  margin: 0 0 6px;
  display: flex;
  gap: 6px;
}

.who-page .who-tech-role li svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9354;
  margin-top: 5px;
}

.who-page .who-tech-role li span:last-child {
  font-size: 0.71rem;
  line-height: 1.35;
}

.who-page .who-delivery ul,
.who-page .who-role-based ul,
.who-page .who-impact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.who-page .who-delivery li,
.who-page .who-role-based li,
.who-page .who-impact li {
  margin: 0;
  display: flex;
  gap: 7px;
}

.who-page .who-delivery li svg,
.who-page .who-role-based li svg,
.who-page .who-impact li svg {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a9354;
  margin-top: 5px;
}

.who-page .who-delivery li span:last-child,
.who-page .who-role-based li span:last-child,
.who-page .who-impact li span:last-child {
  font-size: 0.73rem;
  line-height: 1.4;
}

.who-page .who-cop-title {
  text-align: center;
  padding-top: 18px;
  padding-bottom: 10px;
}

.who-page .who-cop-grid {
  padding-top: 0;
}

.who-page .who-cop-grid [id^="slide-content"] .section {
  padding: 0;
  background: transparent;
}

.who-page .who-cop-grid [id^="slide-content"] .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.who-page .who-cop-grid [id^="slide-content"] .section:not(:has(img)) {
  display: none;
}

.who-page .who-cop-grid [id^="slide-content"] .column {
  flex: initial;
  max-width: none;
  min-width: 0;
  scroll-snap-align: start;
}

.who-page .who-cop-grid [id^="slide-content"] .column:not(:has(img)) {
  display: none;
}

.who-page .who-cop-grid [id^="slide-content"] .column > div {
  border: 0;
  background: transparent;
  padding: 0;
  height: 100%;
  text-align: center;
}

.who-page .who-cop-grid [id^="slide-content"] img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin: 0 auto 10px;
}

.who-page .who-cop-grid [id^="slide-content"] .heading {
  font-family: Inter, Arial, sans-serif;
  font-size: 1.06rem;
  margin: 0;
  line-height: 1.18;
  font-weight: 600;
  color: #2f7f3f;
}

.who-page .who-leadership [id^="carousel"] > div::-webkit-scrollbar,
.who-page .who-cop-grid [id^="carousel"] > div::-webkit-scrollbar {
  height: 6px;
}

.who-page .who-leadership [id^="carousel"] > div::-webkit-scrollbar-thumb,
.who-page .who-cop-grid [id^="carousel"] > div::-webkit-scrollbar-thumb {
  background: #b7c4b8;
  border-radius: 999px;
}

.who-page .who-news {
  padding-top: 20px;
}

.who-page .who-news .heading {
  text-align: center;
}

.who-page .who-news section.section {
  padding: 4px 0 0;
  background: transparent;
}

.who-page .who-news section.section .container {
  gap: 12px;
}

.who-page .who-news .col-25.column > div {
  border: 1px solid #cfdacf;
  background: #fff;
  padding-bottom: 8px;
}

.who-page .who-news .col-25.column img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.who-page .who-news .col-25.column > div > div:not(:first-child) {
  padding: 0 8px;
}

.who-page .who-news .col-25.column > div > div:nth-child(2) .heading {
  margin: 7px 0 3px;
  font-family: Inter, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a705d;
  font-size: 0.55rem;
}

.who-page .who-news .col-25.column > div > div:nth-child(3) .heading {
  margin: 0 0 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.74rem;
  color: #1e2520;
  line-height: 1.32;
}

.who-page .who-news .btn {
  background: transparent;
  border: 0;
  color: #637966;
  padding: 0;
  font-size: 0.53rem;
  box-shadow: none;
}

.who-page .who-news .btn:hover {
  color: #4a9455;
  background: transparent;
}

.who-page .who-news .btn > span > span:first-child {
  display: none;
}

.who-page .who-transform-banner {
  padding: 20px 0 0;
}

.who-page .who-transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.who-page .who-transform-banner .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.who-page .who-transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.who-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.who-page .site-footer .section {
  padding: 14px 0;
}

.who-page .site-footer .heading,
.who-page .site-footer h1,
.who-page .site-footer h2,
.who-page .site-footer h3,
.who-page .site-footer h4,
.who-page .site-footer h5,
.who-page .site-footer h6,
.who-page .site-footer p,
.who-page .site-footer span,
.who-page .site-footer li,
.who-page .site-footer a {
  color: #314635;
}

.who-page .site-footer a:hover {
  color: var(--primary);
}

.who-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.who-page .site-footer .container {
  align-items: flex-start;
}

.who-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4e8f57;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.who-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.who-page .site-footer h3,
.who-page .site-footer p,
.who-page .site-footer span,
.who-page .site-footer a {
  font-size: 0.8rem;
}

/* Case study detail page (AI IT Process Automation Hub) */
.cs-aiit-page .site-main {
  background: #f5f7f5;
}

.cs-aiit-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.cs-aiit-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.cs-aiit-page .logo img {
  max-height: 34px;
}

.cs-aiit-page .main-nav ul {
  gap: 16px;
}

.cs-aiit-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
}

.cs-aiit-page .main-nav li#menu-item-555 a {
  color: var(--primary);
  font-weight: 700;
}

.cs-aiit-page .section {
  padding: 34px 0;
}

.cs-aiit-page .section:nth-of-type(even) {
  background: transparent;
}

.cs-aiit-page .cs-hero {
  padding: 0;
}

.cs-aiit-page .cs-hero > div:first-child {
  display: none;
}

.cs-aiit-page .cs-hero .container {
  max-width: 100%;
  padding: 0;
}

.cs-aiit-page .cs-hero .col-100.column > div {
  min-height: 332px;
  background-image: linear-gradient(rgba(206, 219, 208, 0.84), rgba(206, 219, 208, 0.84)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
  gap: 10px;
}

.cs-aiit-page .cs-hero h2.heading {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.06;
  color: #121a13;
  font-weight: 500;
}

.cs-aiit-page .cs-hero h2.heading span {
  color: #4a9354;
}

.cs-aiit-page .cs-hero h1.heading {
  margin: 0;
  max-width: 900px;
  color: #2a332c;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.45;
}

.cs-aiit-page .cs-hero .btn {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid #d6ddd6;
  background: #fff;
  color: #1f2720;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  box-shadow: none;
}

.cs-aiit-page .cs-hero .btn:hover {
  background: #fff;
  color: #1f2720;
  border-color: #c8d2c8;
}

.cs-aiit-page .cs-block {
  background: #fff;
  padding: 32px 0;
}

.cs-aiit-page .cs-block:nth-of-type(odd) {
  background: #f4f7f4;
}

.cs-aiit-page .cs-block .container {
  align-items: flex-start;
}

.cs-aiit-page .cs-block .heading {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: #172018;
  font-weight: 500;
}

.cs-aiit-page .cs-block .heading span {
  color: #4a9354;
}

.cs-aiit-page .cs-block p {
  margin-bottom: 10px;
  color: #2d362f;
  font-size: 0.79rem;
  line-height: 1.45;
}

.cs-aiit-page .cs-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-aiit-page .cs-block li {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.cs-aiit-page .cs-block li > span:first-child {
  margin-top: 5px;
}

.cs-aiit-page .cs-block li svg {
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  border-radius: 50%;
  background: #4a9354;
}

.cs-aiit-page .cs-block li span:last-child {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #293329;
}

.cs-aiit-page .cs-block .col-50.column > div > div:first-child img {
  width: 100%;
  border: 1px solid #d4dcd5;
  border-radius: 0;
}

.cs-aiit-page .cs-related-title {
  padding: 18px 0 8px;
}

.cs-aiit-page .cs-related-title .heading {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  color: #172018;
}

.cs-aiit-page .cs-related-title .heading span {
  color: #4a9354;
}

.cs-aiit-page .cs-related-grid {
  padding-top: 8px;
  background: #f4f7f4;
}

.cs-aiit-page .cs-related-grid .col-100.column > div > div:first-child > div > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cs-aiit-page .cs-related-grid section.section {
  padding: 0;
  background: transparent;
}

.cs-aiit-page .cs-related-grid section.section .container {
  padding: 0;
}

.cs-aiit-page .cs-related-grid .col-100.column > div > div {
  border: 1px solid #cfd8d0;
  background: #fff;
  padding: 0 0 8px;
}

.cs-aiit-page .cs-related-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.cs-aiit-page .cs-related-grid b {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6e8170;
}

.cs-aiit-page .cs-related-grid br {
  display: none;
}

.cs-aiit-page .cs-related-grid .col-100.column > div > div:nth-child(2) > div {
  padding: 7px 8px 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #202821;
  min-height: 42px;
}

.cs-aiit-page .cs-related-grid .btn {
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #4a9354;
  background: #4a9354;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.cs-aiit-page .cs-related-grid .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.cs-aiit-page .cs-related-grid .btn > span > span:first-child {
  display: none;
}

.cs-aiit-page .cs-related-grid .col-100.column > div > div:last-child > div > div {
  display: flex;
  justify-content: center;
}

.cs-aiit-page .cs-transform-banner {
  padding: 26px 0 0;
}

.cs-aiit-page .cs-transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.cs-aiit-page .cs-transform-banner .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.cs-aiit-page .cs-transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

.cs-aiit-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.cs-aiit-page .site-footer .section {
  padding: 14px 0;
}

.cs-aiit-page .site-footer .heading,
.cs-aiit-page .site-footer h1,
.cs-aiit-page .site-footer h2,
.cs-aiit-page .site-footer h3,
.cs-aiit-page .site-footer h4,
.cs-aiit-page .site-footer h5,
.cs-aiit-page .site-footer h6,
.cs-aiit-page .site-footer p,
.cs-aiit-page .site-footer span,
.cs-aiit-page .site-footer li,
.cs-aiit-page .site-footer a {
  color: #314635;
}

.cs-aiit-page .site-footer a:hover {
  color: var(--primary);
}

.cs-aiit-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.cs-aiit-page .site-footer .container {
  align-items: flex-start;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.cs-aiit-page .site-footer .col-25.column:last-child .heading {
  margin-bottom: 10px;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #4e8f57;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span,
.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
}

.cs-aiit-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
}

.cs-aiit-page .site-footer h3,
.cs-aiit-page .site-footer p,
.cs-aiit-page .site-footer span,
.cs-aiit-page .site-footer a {
  font-size: 0.8rem;
}

/* Structural fallback for all case-study detail pages */
.cs-aiit-page .site-main > div > div > section.section:first-of-type {
  padding: 0;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type > div:first-child {
  display: none;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type .container {
  max-width: 100%;
  padding: 0;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type .col-100.column > div {
  min-height: 332px;
  background-image: linear-gradient(rgba(206, 219, 208, 0.84), rgba(206, 219, 208, 0.84)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 36px 20px;
  gap: 10px;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type h2.heading {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  line-height: 1.06;
  color: #121a13;
  font-weight: 500;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type h2.heading span {
  color: #4a9354;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type h1.heading,
.cs-aiit-page .site-main > div > div > section.section:first-of-type p {
  margin: 0;
  max-width: 900px;
  color: #2a332c;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  line-height: 1.45;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type .btn {
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid #d6ddd6;
  background: #fff;
  color: #1f2720;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  box-shadow: none;
}

.cs-aiit-page .site-main > div > div > section.section:first-of-type .btn:hover {
  background: #fff;
  color: #1f2720;
  border-color: #c8d2c8;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) {
  background: #fff;
  padding: 32px 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(3) {
  background: #f4f7f4;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) .container {
  align-items: flex-start;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) .heading {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: #172018;
  font-weight: 500;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) .heading span {
  color: #4a9354;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) p {
  margin-bottom: 10px;
  color: #2d362f;
  font-size: 0.79rem;
  line-height: 1.45;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) li {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) li > span:first-child {
  margin-top: 5px;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) li svg {
  width: 6px;
  height: 6px;
  max-width: 6px;
  max-height: 6px;
  border-radius: 50%;
  background: #4a9354;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) li span:last-child {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #293329;
}

.cs-aiit-page .site-main > div > div > section.section:is(:nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) .col-50.column > div > div:first-child img {
  width: 100%;
  border: 1px solid #d4dcd5;
  border-radius: 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(5) {
  padding: 18px 0 8px;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(5) .heading {
  margin: 0;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  color: #172018;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(5) .heading span {
  color: #4a9354;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) {
  padding-top: 8px;
  background: #f4f7f4;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div:first-child > div > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) section.section {
  padding: 0;
  background: transparent;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) section.section .container {
  padding: 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div {
  border: 1px solid #cfd8d0;
  background: #fff;
  padding: 0 0 8px;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) b {
  display: inline-block;
  margin-bottom: 2px;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6e8170;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) br {
  display: none;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div:nth-child(2) > div {
  padding: 7px 8px 0;
  font-size: 0.68rem;
  line-height: 1.35;
  color: #202821;
  min-height: 42px;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .btn {
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #4a9354;
  background: #4a9354;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .btn > span > span:first-child {
  display: none;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div:last-child > div > div {
  display: flex;
  justify-content: center;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(7) {
  padding: 26px 0 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(7) .container {
  max-width: 100%;
  padding: 0;
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(7) .col-100.column > div {
  min-height: 170px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.6), rgba(24, 70, 42, 0.6)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(16px, 7vw);
}

.cs-aiit-page .site-main > div > div > section.section:nth-of-type(7) .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.1;
}

/* Success stories page */
.success-stories-page .success-main > div > h1 {
  display: none;
}

.success-stories-page .site-main {
  background: #f4f6f4;
}

.success-stories-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.success-stories-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.success-stories-page .logo img {
  max-height: 34px;
}

.success-stories-page .main-nav ul {
  gap: 16px;
}

.success-stories-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
}

.success-stories-page .main-nav li#menu-item-555 a {
  color: var(--primary);
  font-weight: 700;
}

.success-stories-page .section {
  padding: 36px 0;
}

.success-stories-page .section:nth-of-type(even) {
  background: transparent;
}

.success-stories-page .ss-hero {
  padding: 0;
}

.success-stories-page .ss-hero .container {
  max-width: 100%;
  padding: 0;
}

.success-stories-page .ss-hero .col-100.column > div {
  width: 100%;
  min-height: 356px;
  background-image: linear-gradient(rgba(206, 222, 208, 0.82), rgba(206, 222, 208, 0.82)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-2.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 40px 20px;
}

.success-stories-page .ss-hero .heading {
  font-size: clamp(1.95rem, 3.8vw, 2.85rem);
  color: #101710;
  margin-bottom: 0;
  font-weight: 500;
}

.success-stories-page .ss-hero .heading span {
  color: #4c9758;
}

.success-stories-page .ss-hero p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #2f3930;
}

.success-stories-page .ss-hero a img {
  width: 108px;
}

.success-stories-page .ss-intro {
  background: #fff;
}

.success-stories-page .ss-intro .container {
  align-items: center;
}

.success-stories-page .ss-intro h2.heading {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.38rem);
  line-height: 1.1;
  color: #141c15;
  font-weight: 500;
}

.success-stories-page .ss-intro h2.heading span {
  color: #4c9758;
}

.success-stories-page .ss-intro p {
  max-width: 94%;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #2c342d;
}

.success-stories-page .ss-intro img {
  width: 100%;
  border: 1px solid #d5ddd6;
  border-radius: 0;
}

.success-stories-page .ss-library {
  background: #eef3ef;
  padding-top: 20px;
}

.success-stories-page .ss-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 12px;
  row-gap: 4px;
  margin-bottom: 10px;
}

.success-stories-page .ss-filters button {
  border: 0;
  background: transparent;
  padding: 1px 2px;
  font-size: 0.56rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  color: #253026;
  cursor: pointer;
}

.success-stories-page .ss-filters button:hover {
  color: #4c9758;
}

.success-stories-page .ss-filters button:first-child {
  color: #4c9758;
}

.success-stories-page .ss-card-grid > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  justify-items: stretch;
}

.success-stories-page .ss-card-grid > div > div {
  display: block;
}

.success-stories-page .ss-card-grid > div > div section.section {
  padding: 0;
  background: transparent;
  width: 100%;
}

.success-stories-page .ss-card-grid > div > div section.section .container {
  display: block;
  max-width: none;
  width: 100%;
  padding: 0;
  gap: 0;
}

.success-stories-page .ss-card-grid > div > div section.section .col-100.column > div {
  border: 1px solid #d0d9d1;
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 0 10px;
  border-radius: 2px;
  overflow: hidden;
}

.success-stories-page .ss-card-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}

.success-stories-page .ss-card-grid b {
  display: inline-block;
  margin-bottom: 4px;
  color: #6e8170;
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.success-stories-page .ss-card-grid br {
  display: none;
}

.success-stories-page .ss-card-grid .col-100.column > div > div:nth-child(2) > div {
  color: #1f2620;
  font-size: 0.74rem;
  line-height: 1.42;
  padding: 8px 10px 0;
  min-height: 72px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .success-stories-page .ss-card-grid > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .success-stories-page .ss-card-grid > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .success-stories-page .ss-card-grid .col-100.column > div > div:nth-child(2) > div {
    min-height: 0;
  }
}

.success-stories-page .ss-view-all > div > div {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.success-stories-page .ss-view-all .btn {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #4b9557;
  background: #4b9557;
  color: #fff;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  box-shadow: none;
}

.success-stories-page .ss-view-all .btn:hover {
  background: #3f8249;
  border-color: #3f8249;
  color: #fff;
}

.success-stories-page .ss-view-all .btn > span > span:first-child {
  display: none;
}

.success-stories-page .ss-cta {
  background: #fff;
  padding-top: 30px;
}

.success-stories-page .ss-cta .container {
  align-items: center;
}

.success-stories-page .ss-cta img {
  border-radius: 0;
}

.success-stories-page .ss-cta .col-50.column:first-child img {
  width: 100%;
  border: 1px solid #d8e0d9;
}

.success-stories-page .ss-cta .heading {
  margin-bottom: 10px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  color: #121812;
  font-weight: 500;
}

.success-stories-page .ss-cta p {
  margin-bottom: 14px;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #2f3730;
}

.success-stories-page .ss-cta a img {
  width: 190px;
}

.success-stories-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.success-stories-page .site-footer .section {
  padding: 14px 0;
}

.success-stories-page .site-footer .heading,
.success-stories-page .site-footer h1,
.success-stories-page .site-footer h2,
.success-stories-page .site-footer h3,
.success-stories-page .site-footer h4,
.success-stories-page .site-footer h5,
.success-stories-page .site-footer h6,
.success-stories-page .site-footer p,
.success-stories-page .site-footer span,
.success-stories-page .site-footer li,
.success-stories-page .site-footer a {
  color: #314635;
}

.success-stories-page .site-footer a:hover {
  color: var(--primary);
}

.success-stories-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.success-stories-page .site-footer .container {
  align-items: flex-start;
}

.success-stories-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.success-stories-page .site-footer .col-25.column:last-child .heading {
  margin-bottom: 10px;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #4e8f57;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span {
  display: none;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.success-stories-page .site-footer .col-25.column:last-child > div > div:nth-child(3) > div {
  margin-top: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.success-stories-page .site-footer h3,
.success-stories-page .site-footer p,
.success-stories-page .site-footer span,
.success-stories-page .site-footer a {
  font-size: 0.8rem;
}

/* Our insights page */
.our-insights-page .insights-main > div > h1 {
  display: none;
}

.our-insights-page .site-main {
  background: #f4f5f4;
}

.our-insights-page .site-header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e5e9e5;
  backdrop-filter: none;
}

.our-insights-page .header-container {
  max-width: 1280px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 18px;
}

.our-insights-page .logo img {
  max-height: 34px;
}

.our-insights-page .main-nav ul {
  gap: 16px;
}

.our-insights-page .main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #222;
}

.our-insights-page .main-nav li#menu-item-553 a {
  color: var(--primary);
  font-weight: 700;
}

.our-insights-page .section:nth-of-type(even) {
  background: transparent;
}

.our-insights-page .insights-hero {
  padding: 0;
}

.our-insights-page .insights-hero .container {
  max-width: 100%;
  padding: 0;
}

.our-insights-page .insights-hero .col-100.column > div {
  width: 100%;
  min-height: 400px;
  background-image: linear-gradient(rgba(27, 39, 31, 0.48), rgba(27, 39, 31, 0.48)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-3.png");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 44px 20px;
}

.our-insights-page .insights-hero .heading {
  font-size: clamp(1.95rem, 3.6vw, 2.8rem);
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.our-insights-page .insights-hero .heading span {
  color: #79b96d;
}

.our-insights-page .insights-hero p {
  color: #e8eee8;
  margin: 0;
  font-size: 1rem;
}

.our-insights-page .insights-hero a img {
  width: 118px;
}

.our-insights-page .insights-tabs {
  padding: 20px 0 16px;
}

.our-insights-page .insights-tabs .container {
  justify-content: center;
}

.our-insights-page .insights-tabs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.our-insights-page .insights-tabs li {
  margin: 0;
}

.our-insights-page .insights-tabs li:first-child a {
  color: #111;
  font-weight: 700;
}

.our-insights-page .insights-tabs a {
  color: #333;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.our-insights-page .insights-tabs svg {
  display: none;
}

.our-insights-page .insights-content {
  padding-top: 10px;
}

.our-insights-page .featured-strip {
  padding: 0;
}

.our-insights-page .featured-strip .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.our-insights-page .featured-strip .column {
  display: block;
}

.our-insights-page .featured-strip .column > div {
  border: 1px solid #c8d7cb;
  background: #d7e5d8;
  min-height: 196px;
  padding: 10px 9px;
}

.our-insights-page .featured-strip h2.heading {
  margin: 0 0 6px;
  color: #1f2621;
  font-family: Inter, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.54rem;
  text-transform: uppercase;
  line-height: 1.35;
}

.our-insights-page .featured-strip h5 {
  margin: 0;
  line-height: 1.35;
}

.our-insights-page .featured-strip h5 a {
  color: #162219;
  font-size: 0.72rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.our-insights-page .insights-title {
  margin-top: 8px;
}

.our-insights-page .insights-title .heading {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #182019;
}

.our-insights-page .insights-title .heading span {
  color: var(--primary);
}

.our-insights-page .insights-grid-section {
  padding: 12px 0 0;
}

.our-insights-page .insights-grid-section .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.our-insights-page .insights-grid-section .col-25.column {
  max-width: none;
}

.our-insights-page .insights-grid-section .col-25.column > div {
  border: 1px solid #cfd8d0;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
}

.our-insights-page .insights-grid-section .col-25.column > div > div:first-child img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0;
}

.our-insights-page .insights-grid-section .col-25.column > div > div:not(:first-child) {
  padding: 0 9px;
}

.our-insights-page .insights-grid-section .col-25.column > div > div:nth-child(2) .heading {
  margin: 8px 0 3px;
  color: #566b57;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.our-insights-page .insights-grid-section .col-25.column > div > div:nth-child(3) .heading {
  margin: 0 0 8px;
  color: #1d2420;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
}

.our-insights-page .insights-grid-section .btn {
  display: inline-flex;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5b705f;
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.54rem;
  font-weight: 700;
}

.our-insights-page .insights-grid-section .btn:hover {
  color: var(--primary);
  background: transparent;
  border: 0;
}

.our-insights-page .insights-grid-section .btn > span > span:first-child {
  display: none;
}

.our-insights-page .insights-view-more {
  display: flex;
  justify-content: center;
  margin: 20px 0 8px;
}

.our-insights-page .insights-view-more a img {
  width: 96px;
}

.our-insights-page .transform-banner {
  padding: 42px 0 36px;
}

.our-insights-page .transform-banner .container {
  max-width: 100%;
  padding: 0;
}

.our-insights-page .transform-banner .col-100.column > div {
  min-height: 230px;
  background-image: linear-gradient(rgba(24, 70, 42, 0.62), rgba(24, 70, 42, 0.62)),
    url("../wp-content/uploads/2024/07/unsplash_8bghKxNU1j0-6.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 24px max(18px, 7vw);
}

.our-insights-page .transform-banner .heading {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 4.8vw, 3.2rem);
  line-height: 1.1;
}

.our-insights-page .site-footer {
  background: #eff3ef;
  color: #314635;
  padding: 36px 0 18px;
  border-top: 1px solid #dfe7df;
}

.our-insights-page .site-footer .heading,
.our-insights-page .site-footer h1,
.our-insights-page .site-footer h2,
.our-insights-page .site-footer h3,
.our-insights-page .site-footer h4,
.our-insights-page .site-footer h5,
.our-insights-page .site-footer h6,
.our-insights-page .site-footer p,
.our-insights-page .site-footer span,
.our-insights-page .site-footer li,
.our-insights-page .site-footer a {
  color: #314635;
}

.our-insights-page .site-footer a:hover {
  color: var(--primary);
}

.our-insights-page .site-footer img {
  filter: none;
  max-width: 178px;
}

.our-insights-page .site-footer .section {
  padding: 14px 0;
}

.our-insights-page .site-footer .container {
  align-items: flex-start;
}

.our-insights-page .site-footer .col-25.column:last-child > div {
  margin-left: auto;
  max-width: 250px;
}

.our-insights-page .site-footer .col-25.column:last-child .heading {
  margin-bottom: 10px;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span {
  margin: 0;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #4e8f57;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #4e8f57;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a:hover {
  background: #fff;
  color: #4e8f57;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a > span {
  display: none;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span > a svg {
  display: none;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(1) > a::before {
  content: "in";
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(2) > a::before {
  content: "f";
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(3) > a::before {
  content: "@";
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(4) > a::before {
  content: "x";
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(2) > div > div > span:nth-child(5) > a::before {
  content: "ig";
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1;
}

.our-insights-page .site-footer .col-25.column:last-child > div > div:nth-child(3) > div {
  margin-top: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
}

.our-insights-page .site-footer h3,
.our-insights-page .site-footer p,
.our-insights-page .site-footer span,
.our-insights-page .site-footer a {
  font-size: 0.8rem;
}

/* Small visual animation hooks used by JS */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .col-25,
  .col-33 {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .home-page .main-nav ul {
    gap: 12px;
  }

  .home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .success-stories-page .ss-card-grid > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .success-stories-page .main-nav ul {
    gap: 12px;
  }

  .our-studio-page .main-nav ul {
    gap: 12px;
  }

  .our-studio-page .studio-approach-flow .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .our-studio-page .studio-success-grid .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-studio-page .studio-success-grid .col-33.column > div {
    min-height: 320px;
  }

  .our-studio-page .studio-insights-grid .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-studio-page .studio-approach-flow .column::after {
    display: none;
  }

  .what-we-do-page .main-nav ul {
    gap: 12px;
  }

  .what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(2) p {
    max-width: 700px;
  }

  .careers-page .main-nav ul {
    gap: 12px;
  }

  .ai-page .main-nav ul {
    gap: 12px;
  }

  .ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div:first-child {
    gap: 10px;
  }

  .careers-page .careers-ratings-grid .col-25.column,
  .careers-page .careers-jobs-grid .col-25.column {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .who-page .main-nav ul {
    gap: 12px;
  }

  .who-page .who-cop-grid [id^="slide-content"] .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cs-aiit-page .main-nav ul {
    gap: 12px;
  }

  .cs-aiit-page .cs-related-grid .col-100.column > div > div:first-child > div > div {
    grid-template-columns: 1fr;
  }

  .cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div:first-child > div > div {
    grid-template-columns: 1fr;
  }

  .our-insights-page .featured-strip .container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .our-insights-page .insights-grid-section .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-insights-page .main-nav ul {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .mobile-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }

  .main-nav.active {
    max-height: 520px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px 16px;
    gap: 10px;
  }

  .col-50,
  .col-33,
  .col-25 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .home-page .logo img {
    max-height: 31px;
  }

  .home-page .home-hero .col-100.column > div {
    min-height: 316px;
    padding: 28px 16px;
  }

  .home-page .home-ai-section p,
  .home-page .home-studio-section p,
  .home-page .home-transform-section p {
    max-width: 100%;
  }

  .home-page .home-stories-section .col-100.column > div > div:nth-child(2) > div > div,
  .home-page .home-insights-section section.section .container {
    grid-template-columns: 1fr;
  }

  .home-page .home-insights-section section.section .container {
    display: grid;
  }

  .home-page .home-career-section .col-50.column {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .home-page .home-career-section .col-50.column:first-child > div {
    min-height: 240px;
  }

  .home-page .home-career-section .col-50.column:last-child img {
    min-height: 220px;
  }

  .home-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .success-stories-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .success-stories-page .logo img {
    max-height: 32px;
  }

  .success-stories-page .ss-hero .col-100.column > div {
    min-height: 310px;
    padding: 32px 16px;
  }

  .success-stories-page .ss-intro p {
    max-width: 100%;
  }

  .success-stories-page .ss-card-grid > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .success-stories-page .ss-filters {
    justify-content: flex-start;
  }

  .success-stories-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .our-studio-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .our-studio-page .logo img {
    max-height: 32px;
  }

  .our-studio-page .studio-hero .col-100.column > div {
    min-height: 250px;
    padding: 24px 16px;
  }

  .our-studio-page .studio-approach-flow .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .our-studio-page .studio-intro-cards .container {
    grid-template-columns: 1fr;
  }

  .our-studio-page .studio-success-grid .container,
  .our-studio-page .studio-insights-grid .container {
    grid-template-columns: 1fr;
    display: grid;
  }

  .our-studio-page .studio-success-grid .col-33.column > div {
    min-height: auto;
  }

  .our-studio-page .studio-contact .col-50.column:last-child > div {
    min-height: 200px;
  }

  .our-studio-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .what-we-do-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .what-we-do-page .logo img {
    max-height: 32px;
  }

  .what-we-do-page .what-hero .col-100.column > div {
    min-height: 270px;
    padding: 24px 16px;
  }

  .what-we-do-page .what-service-mgmt > .container > .col-100.column > div > div:nth-child(2) p {
    max-width: 100%;
  }

  .btn-outline-cta,
  .what-we-do-page .what-cta-btn {
    font-size: 0.62rem;
    padding: 7px 7px 7px 12px;
  }

  .btn-outline-cta > span:last-child,
  .what-we-do-page .what-cta-btn > span:last-child {
    width: 15px;
    height: 15px;
    font-size: 0.55rem;
  }

  .what-we-do-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .careers-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .careers-page .logo img {
    max-height: 32px;
  }

  .careers-page .careers-hero .col-100.column > div {
    min-height: 270px;
    padding: 24px 16px;
  }

  .careers-page .careers-ratings-grid .container,
  .careers-page .careers-jobs-grid .container {
    gap: 0;
  }

  .careers-page .careers-ratings-grid .col-25.column,
  .careers-page .careers-jobs-grid .col-25.column {
    flex: 0 0 100%;
    max-width: 100%;
    border-left: 0;
  }

  .careers-page .careers-ratings-grid .col-25.column + .col-25.column,
  .careers-page .careers-jobs-grid .col-25.column + .col-25.column {
    border-top: 1px solid #dce5dc;
    border-left: 0;
  }

  .careers-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .ai-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .ai-page .logo img {
    max-height: 32px;
  }

  .ai-page .ai-hero .col-100.column > div {
    min-height: 248px;
    padding: 22px 16px;
  }

  .ai-page .ai-catalog-row .col-50.column > div,
  .ai-page .ai-catalog-row .col-100.column > div {
    min-height: 90px;
  }

  .ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div:first-child {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 12px;
  }

  .ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div:first-child > div {
    flex: 0 0 92px;
  }

  .ai-page .ai-contact-wrap .col-50.column:last-child img {
    margin-top: 6px;
  }

  .ai-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .who-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .who-page .logo img {
    max-height: 32px;
  }

  .who-page .who-hero .col-100.column > div {
    min-height: 270px;
    padding: 28px 16px;
  }

  .who-page .who-company-grid .col-50.column > div,
  .who-page .who-tech-role .col-33.column > div {
    height: auto;
  }

  .who-page .who-cop-grid [id^="slide-content"] .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-page .who-leadership .col-25.column {
    max-width: none;
  }

  .who-page .who-leadership [id^="slide-content"] .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .who-page .who-cop-grid [id^="slide-content"] .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .who-page .who-cop-grid [id^="slide-content"] .heading {
    font-size: 0.98rem;
  }

  .who-page .who-news section.section .container {
    display: grid;
    grid-template-columns: 1fr;
  }

  .who-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .cs-aiit-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .cs-aiit-page .logo img {
    max-height: 32px;
  }

  .cs-aiit-page .cs-hero .col-100.column > div {
    min-height: 300px;
    padding: 30px 16px;
  }

  .cs-aiit-page .site-main > div > div > section.section:first-of-type .col-100.column > div {
    min-height: 300px;
    padding: 30px 16px;
  }

  .cs-aiit-page .cs-related-grid .col-100.column > div > div:first-child > div > div {
    grid-template-columns: 1fr;
  }

  .cs-aiit-page .site-main > div > div > section.section:nth-of-type(6) .col-100.column > div > div:first-child > div > div {
    grid-template-columns: 1fr;
  }

  .cs-aiit-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }

  .our-insights-page .insights-tabs ul {
    gap: 14px;
    flex-wrap: wrap;
  }

  .our-insights-page .header-container {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .our-insights-page .logo img {
    max-height: 32px;
  }

  .our-insights-page .featured-strip .container,
  .our-insights-page .insights-grid-section .container {
    grid-template-columns: 1fr;
  }

  .our-insights-page .insights-hero .col-100.column > div {
    min-height: 340px;
    padding: 34px 18px;
  }

  .our-insights-page .site-footer .col-25.column:last-child > div {
    margin-left: 0;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 14px;
    gap: 16px;
  }

  .section {
    padding: 36px 0;
  }

  h1,
  .heading {
    word-break: break-word;
  }
}

/* Global layout and navigation alignment overrides */
.home-page .container,
.ai-page .container,
.who-page .container,
.what-we-do-page .container,
.our-studio-page .container,
.success-stories-page .container,
.our-insights-page .container,
.careers-page .container,
.cs-aiit-page .container,
body:not([class]) .container {
  max-width: 1360px;
}

.site-header {
  background: #f2f2f2;
  border-bottom: 1px solid #d9d9d9;
  backdrop-filter: none;
}

.header-container {
  max-width: 1480px;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo img {
  max-height: 54px;
}

.main-nav ul {
  gap: 24px;
  flex-wrap: nowrap;
}

.main-nav a {
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: #202020;
}

/* Final override: keep Success Stories tiles horizontal */
.success-stories-page .ss-card-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
    width: 100% !important;
    justify-content: flex-start !important;
}

.success-stories-page .ss-card-grid > div {
    flex: 0 0 calc((100% - 3rem) / 3) !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 24px !important;
    gap: 0 !important;
}

.success-stories-page .ss-card-grid > div section.section,
.success-stories-page .ss-card-grid > div section.section > .container,
.success-stories-page .ss-card-grid > div section.section > .container > .col-100,
.success-stories-page .ss-card-grid > div section.section > .container > .col-100 > div {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
}

.success-stories-page .ss-card-grid .col-100 > div > div:first-child {
    line-height: 0 !important;
    display: block !important;
}

.success-stories-page .ss-card-grid .col-100 > div > div:first-child img {
    border-radius: 8px 8px 0 0 !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
    aspect-ratio: 16 / 9 !important;
}

.success-stories-page .ss-card-grid .col-100 > div > div:nth-child(2) {
    background-color: #eef4ee !important; 
    padding: 0 !important;
    border-radius: 0 0 8px 8px !important;
    flex-grow: 1 !important; 
    display: flex !important;
    flex-direction: column !important;
}

.success-stories-page .ss-card-grid .col-100 > div > div:nth-child(2) > div {
    padding: 24px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

@media (max-width: 1100px) {
  .success-stories-page .ss-card-grid > div {
    flex: 0 0 calc((100% - 1.5rem) / 2) !important;
  }
}

@media (max-width: 700px) {
  .success-stories-page .ss-card-grid > div {
    flex: 0 0 100% !important;
  }
}

/* AI Catalog Grid Override to Match Screenshot */
.ai-page .ai-catalog-row {
  margin-bottom: 4px !important;
}

.ai-page .ai-catalog-row .container {
  gap: 4px !important;
  align-items: stretch !important;
}

.ai-page .ai-catalog-row .col-50.column {
  flex: 0 0 calc(50% - 2px) !important;
  max-width: calc(50% - 2px) !important;
  display: flex !important;
  flex-direction: column !important;
}

.ai-page .ai-catalog-row .col-100.column {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.ai-page .ai-catalog-row .col-50.column > div,
.ai-page .ai-catalog-row .col-100.column > div {
  flex-grow: 1 !important;
  height: 100% !important;
  border: none !important;
  border-radius: 0 !important;
}

@media (max-width: 900px) {
  .ai-page .ai-catalog-row .container {
    gap: 4px !important;
  }
  .ai-page .ai-catalog-row .col-50.column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

/* Alliances Override to Match Screenshot */
.ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div > div:first-child {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important; 
    gap: 20px !important;
    width: 100% !important;
}

.ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div > div:first-child > div {
    display: block !important;
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: 100% !important;
}

.ai-page .ai-alliances figure {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ai-page .ai-alliances figure img {
    height: auto !important;
    max-height: 55px !important; 
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}

.ai-page .ai-alliances .heading {
    color: #42864c !important; 
    font-weight: 600 !important;
}

@media (max-width: 768px) {
    .ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div > div:first-child {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 24px !important;
    }
    .ai-page .ai-alliances .col-100.column > div > div:nth-child(2) > div > div > div:first-child > div {
        flex: 0 0 calc(33% - 16px) !important;
        min-width: calc(33% - 16px) !important;
    }
    .ai-page .ai-alliances figure img {
        max-height: 40px !important;
    }
}
