/* === reset.css === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}


/* === variables.css === */
/* === Web Fonts === */

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/assets/fonts/roboto-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* === Design Tokens === */

:root {
  /* Colors - Brand */
  --color-primary: #6A9E43;
  --color-dark: #000000;
  --color-white: #FFFFFF;
  --color-off-white: #F0F0F1;

  /* Colors - Text */
  --text-primary: #000000;
  --text-body: #363636;
  --text-muted: #666666;
  --text-light: #737373;
  --text-subtle: #999999;
  --text-dimmed: #A1A1A1;
  --text-dark-bg: #2B2926;
  --text-white: #FFFFFF;

  /* Colors - Backgrounds */
  --bg-white: #FFFFFF;
  --bg-black: #000000;
  --bg-green: #6A9E43;
  --bg-glass: rgba(255, 255, 255, 0.1);
  --bg-light-gray: #F5F5F5;

  /* Colors - Accent */
  --accent-red: #E26F56;
  --accent-blue: #3858E9;

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-nav: 'Roboto', sans-serif;

  /* Spacing */
  --section-padding-x: 130px;
  --gap-lg: 48px;
  --gap-md: 32px;

  /* Layout */
  --header-height: 62px;
  --container-max-content: 653px;

  /* === Semantic Tokens — Typography Roles === */
  /* Use these for new pages. Each maps to a font-size / font-weight pair. */
  --type-display-size: 54px;
  --type-display-weight: 900;
  --type-display-lh: 1.05;

  --type-page-title-size: 60px;
  --type-page-title-weight: 400;
  --type-page-title-lh: 1.0;

  --type-section-size: 48px;
  --type-section-weight: 700;
  --type-section-lh: 1.4;

  --type-subsection-size: 36px;
  --type-subsection-weight: 600;
  --type-subsection-lh: 1.25;

  --type-card-size: 24px;
  --type-card-weight: 700;
  --type-card-lh: 1.4;

  --type-large-body-size: 18px;
  --type-large-body-weight: 400;
  --type-large-body-lh: 1.5;

  --type-body-size: 16px;
  --type-body-weight: 400;
  --type-body-lh: 1.5;

  --type-small-size: 14px;
  --type-small-weight: 500;
  --type-small-lh: 1.5;

  /* === Bricks-Compat Tokens (legacy) === */
  /* These match the original Bricks Builder site. Use the semantic scale above for new pages. */
  --compat-staffing-h2-size: 33.6px;
  --compat-staffing-h2-weight: 700;

  --compat-about-h3-size: 28.8px;
  --compat-about-h3-weight: 500;

  --compat-team-name-size: 20.8px;
  --compat-team-name-weight: 600;

  --compat-quote-size: 30px;
  --compat-quote-weight: 600;

  /* === Semantic Tokens — Color Roles === */
  /* Surface = backgrounds, On-surface = text/icons on that surface */
  --surface-primary: var(--bg-white);
  --surface-inverse: var(--bg-black);
  --surface-accent: var(--bg-green);
  --surface-subtle: var(--bg-light-gray);

  --on-surface: var(--text-body);
  --on-surface-strong: var(--text-primary);
  --on-surface-muted: var(--text-muted);
  --on-inverse: var(--text-white);
  --on-accent: var(--text-white);

  /* === Semantic Tokens — Spacing === */
  --space-section-x: var(--section-padding-x);
  --space-lg: var(--gap-lg);
  --space-md: var(--gap-md);
  --space-sm: 16px;
  --space-xs: 8px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-body);
  background: var(--bg-white);
}


/* === layout.css === */
/* === Layout === */

.section {
  padding: 60px var(--space-section-x);
}

.section--full {
  padding-left: 0;
  padding-right: 0;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

.container--narrow {
  max-width: var(--container-max-content);
}

/* Two-column layout */
.two-col {
  display: flex;
  gap: var(--space-lg);
}

.two-col__left {
  flex: 0 0 22%;
}

.two-col__right {
  flex: 1;
}

/* Featured Image Split */
.split {
  display: flex;
  min-height: 550px;
}

.split--flipped {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px var(--space-section-x);
}

.split__content-inner {
  max-width: var(--container-max-content);
}

.split__image {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split--green .split__content {
  background: var(--surface-accent);
  color: var(--on-accent);
}

.split--dark .split__content {
  background: var(--surface-inverse);
  color: var(--on-inverse);
}

.split--white .split__content {
  background: var(--surface-primary);
  color: var(--on-surface-strong);
}

/* Grid utilities */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.text-center {
  text-align: center;
}

/* === Responsive === */

@media (max-width: 1199px) {
  :root {
    --section-padding-x: 40px;
  }

  .split {
    flex-direction: column-reverse;
  }

  .split--flipped {
    flex-direction: column;
  }

  .split__image {
    min-height: 300px;
  }

  .split__content {
    padding: 40px var(--space-section-x);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding-x: 24px;
  }

  .two-col {
    flex-direction: column;
    gap: var(--space-md);
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 479px) {
  :root {
    --section-padding-x: 16px;
  }
}


/* === components.css === */
/* === Header === */

.header {
  height: var(--header-height);
  background: var(--surface-primary);
  display: flex;
  align-items: center;
  padding: 0 var(--space-section-x);
  position: relative;
}

.header__logo img {
  width: 87px;
  height: 22px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: var(--space-lg);
}

.header__nav a {
  font-family: var(--font-nav);
  font-size: var(--type-body-size);
  font-weight: 500;
  color: var(--on-surface-muted);
  padding: 8px var(--space-sm);
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.header__nav a:hover {
  background-color: var(--surface-accent);
  color: var(--on-accent);
}

.header__nav a.active {
  background-color: var(--surface-accent);
  color: var(--on-accent);
  border-bottom: 3px solid var(--text-primary);
  border-radius: 6px 6px 0 0;
}

.header__contact {
  margin-left: auto;
  background: var(--surface-accent);
  color: var(--on-accent);
  font-family: var(--font-primary);
  font-size: var(--type-small-size);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px var(--space-sm);
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-radius: 0;
}

.header__contact:hover {
  text-decoration: underline;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.3s;
}

/* === Buttons === */

.btn-primary {
  background: var(--surface-accent);
  color: var(--on-accent);
  border: none;
  border-radius: 0;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--type-body-size);
  font-weight: 700;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  cursor: pointer;
}

.btn-primary:hover {
  text-decoration: underline;
}

.btn-ghost {
  background: transparent;
  color: var(--on-inverse);
  border: 2px solid #B0B0B0;
  border-radius: 0;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--type-body-size);
  font-weight: 700;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  cursor: pointer;
}

.btn-pill {
  background: var(--surface-accent);
  color: var(--on-accent);
  border: none;
  border-radius: 9999px;
  padding: 13px 23px;
  font-size: var(--type-body-size);
  font-weight: 700;
  font-family: var(--font-primary);
  display: inline-block;
  cursor: pointer;
}

.btn-pill:hover {
  text-decoration: underline;
}

/* === Footer === */

.footer {
  background: var(--surface-inverse);
  padding: 40px var(--space-section-x);
  color: var(--on-inverse);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__logo img {
  width: 87px;
  height: 22px;
  margin-bottom: 12px;
}

.footer__left p {
  font-size: var(--type-small-size);
  font-weight: var(--type-small-weight);
  color: var(--on-inverse);
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__nav a {
  font-family: var(--font-primary);
  font-size: var(--type-small-size);
  font-weight: 300;
  color: var(--on-inverse);
  padding: 8px var(--space-sm);
  border-radius: 6px;
  transition: background-color 0.2s, color 0.2s;
}

.footer__nav a:hover {
  background-color: var(--surface-accent);
  color: var(--on-accent);
}

.footer__nav a.active {
  background-color: var(--surface-accent);
  color: var(--on-accent);
}

/* === Client Logo Bar === */

.client-logos {
  text-align: center;
  padding: 40px var(--space-section-x);
  background: var(--surface-primary);
  overflow: hidden;
}

.client-heading {
  font-size: var(--type-card-size);
  font-weight: var(--type-card-weight);
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.logo-carousel {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 140px;
  animation: scroll-logos 20s linear infinite;
  width: max-content;
}

.logo-track img {
  height: 35px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s, opacity 0.3s;
}

.logo-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* === Hero === */

.hero {
  min-height: clamp(400px, 33vw, 680px);
  background-size: cover;
  background-position: right 35%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px var(--space-section-x);
}

.hero__content {
  max-width: 600px;
}

.hero__title {
  font-size: var(--type-display-size);
  font-weight: var(--type-display-weight);
  line-height: var(--type-display-lh);
  color: var(--on-inverse);
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-size: var(--compat-about-h3-size);
  font-weight: 700;
  line-height: 1.4;
  color: var(--on-inverse);
  margin-bottom: var(--space-sm);
}

.hero__body {
  font-size: var(--type-small-size);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dimmed);
  margin-bottom: 24px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* === Stats Section === */

.stats {
  background: var(--surface-inverse);
  padding: 60px var(--space-section-x);
}

.stats__heading {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-off-white);
  margin-bottom: 40px;
}

.stat {
  text-align: left;
}

.stat__number {
  font-size: 72px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.stat__label {
  font-size: var(--type-card-size);
  font-weight: var(--type-card-weight);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.stat__desc {
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  color: var(--on-inverse);
  line-height: var(--type-body-lh);
}

/* === CTA Band === */

.cta-band {
  padding: 80px var(--space-section-x);
  text-align: center;
  background: var(--surface-primary);
}

.cta-band__heading {
  font-size: var(--type-subsection-size);
  font-weight: var(--type-subsection-weight);
  color: var(--on-surface-strong);
  margin-bottom: var(--space-sm);
}

.cta-band__subtext {
  font-size: var(--type-body-size);
  font-weight: var(--type-body-weight);
  color: var(--on-surface);
  margin-bottom: var(--space-md);
}

/* === Value Proposition Rows === */

.value-row {
  display: flex;
  gap: var(--gap-lg);
  padding: 40px 0;
  border-bottom: 1px solid #E0E0E0;
}

.value-row:last-child {
  border-bottom: none;
}

.value-row__heading {
  flex: 0 0 30%;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.value-row__body {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

/* === Team Lead === */

.team-lead {
  text-align: center;
  padding: 60px var(--section-padding-x);
  background: var(--surface-subtle);
}

.team-lead__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.team-lead__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}

.team-lead__name {
  font-size: 20.8px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-lead__title {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
}

/* === Tabs === */

.tabs {
  padding: 60px var(--section-padding-x);
  background: var(--bg-light-gray);
}

.tabs__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 32px;
}

.tabs__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  min-height: 550px;
  background: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
}

.tab-bar {
  display: flex;
  gap: 8px;
  grid-column: 1;
  grid-row: 1;
  padding: 40px 40px 24px;
}

.tab-btn {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  border-radius: 0;
  transition: background-color 0.2s, color 0.2s, outline-color 0.2s;
  background: none;
  cursor: pointer;
}

.tab-btn:hover {
  color: var(--text-primary);
  background-color: var(--bg-light-gray);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--text-white);
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: contents;
}

.tab-panel__text {
  grid-column: 1;
  grid-row: 2;
  padding: 0 40px 40px;
}

.tab-panel__text h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tab-panel__text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.tab-panel__image {
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;
  overflow: hidden;
}

.tab-panel__image img,
.tab-panel__image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === Process Steps (AI page) === */

.process-steps {
  background: var(--bg-light-gray);
  position: relative;
  height: calc(60vh + 300px);
}

.process-steps__sticky {
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: 60px var(--section-padding-x);
}

.process-steps__container {
  display: flex;
  gap: var(--gap-lg);
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.process-steps__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.process-steps__header {
  margin-bottom: 32px;
}

.process-steps__header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.process-steps__header p {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.process-steps__viewport {
  height: 420px;
  overflow: hidden;
  position: relative;
  padding-left: 16px;
  margin-left: -16px;
}

.process-step {
  padding: 24px 0;
  padding-left: 32px;
  position: relative;
  border-left: 2px solid #D3D3D3;
}

.process-step::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 28px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #D3D3D3;
  border: 2px solid #D3D3D3;
  transition: background 0.4s ease, border-color 0.4s ease, width 0.4s ease, height 0.4s ease, left 0.4s ease;
}

.process-step.active::before {
  width: 12px;
  height: 12px;
  left: -7px;
  background: #A3E635;
  border-color: var(--text-primary);
}

.process-step__label {
  font-size: 14px;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
  transition: color 0.4s ease;
}

.process-step.active .process-step__label {
  color: var(--text-primary);
}

.process-step__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.process-step.active .process-step__title {
  color: var(--text-primary);
}

.process-step__desc {
  font-size: 16px;
  font-weight: 200;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color 0.4s ease;
}

.process-step.active .process-step__desc {
  color: var(--text-body);
}

.process-steps__image {
  flex: 1;
  position: relative;
  aspect-ratio: 4 / 3;
  align-self: start;
}

.process-steps__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.process-steps__image img.active {
  opacity: 1;
}

/* === Dark Roles List (Recruiting) === */

.roles-list {
  background: var(--bg-green);
  padding: 60px var(--section-padding-x);
  text-align: center;
}

.roles-list__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.roles-list__item {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
}

.roles-list__footer {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-white);
}

/* === Bio Section (Speaking) === */

.bio-section {
  padding: 60px var(--section-padding-x);
  text-align: center;
  background: var(--surface-subtle);
}

.bio-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.bio-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-section__photo {
  flex: none;
  width: 220px;
  margin-bottom: 16px;
}

.bio-section__photo img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

.bio-section__text {
  max-width: 900px;
}

.bio-section__name {
  font-size: 20.8px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.bio-section__bio {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

/* === Feature Cards (Staffing) === */

.feature-cards {
  padding: 60px var(--section-padding-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  padding-bottom: 24px;
  margin-bottom: 0;
}

.feature-card__heading {
  font-size: 33.6px;
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: 12px;
}

.feature-card__body {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-body);
  line-height: 1.7;
}

/* === Carousel (About page hero) === */

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: carousel-fade 13.5s infinite;
}

.carousel__slide:nth-child(1) { animation-delay: 0s; }
.carousel__slide:nth-child(2) { animation-delay: 4.5s; }
.carousel__slide:nth-child(3) { animation-delay: 9s; }

@keyframes carousel-fade {
  0%      { opacity: 0; }
  5.19%   { opacity: 1; }
  33.33%  { opacity: 1; }
  38.52%  { opacity: 0; }
  100%    { opacity: 0; }
}

/* === About Page === */

.about-intro {
  display: flex;
  gap: var(--gap-lg);
  padding: 60px var(--section-padding-x);
  align-items: center;
}

.about-intro__text {
  flex: 1;
}

.about-intro__text h3 {
  font-size: 48px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.0;
}

.about-intro__image {
  flex: 0.75;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.about-history {
  background: var(--bg-green);
  padding: 60px var(--section-padding-x);
}

.about-history p {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-history p:last-child {
  margin-bottom: 0;
}

.about-work {
  display: flex;
  gap: var(--gap-lg);
  padding: 60px var(--section-padding-x);
  align-items: center;
}

.about-work__text {
  flex: 1;
}

.about-work__text h3 {
  font-size: 28.8px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-work__text p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-work__image {
  flex: 1;
}

.about-work__image img {
  width: 100%;
}

/* === Page Title (inner pages split hero) === */

.split__content h1 {
  font-size: 60px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.0;
  margin-bottom: 24px;
}

.split--green .split__content h1,
.split--dark .split__content h1 {
  color: var(--text-white);
}

.split__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 16px;
}

.split--green .split__content p,
.split--dark .split__content p {
  color: var(--text-white);
}

.split__content .split__heading-lg {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-white);
}

.split__content .split__heading-md {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 24px;
}

.split__content .split__quote {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.4;
  margin-bottom: 16px;
}

.split__content .split__attribution {
  font-size: 20px;
  font-weight: 400;
  color: var(--text-white);
}

/* === Mobile responsive for components === */

@media (max-width: 1199px) {
  .process-steps {
    height: auto;
  }

  .process-steps__sticky {
    position: static;
    height: auto;
    padding: 60px var(--section-padding-x);
  }

  .process-steps__container {
    flex-direction: column;
  }

  .process-steps__viewport {
    height: auto;
    overflow: visible;
  }

  .process-steps__list {
    transform: none !important;
  }

  .process-steps__image {
    display: none;
  }

  .tabs__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }

  .tab-panel__image {
    grid-column: 1;
    grid-row: 1;
    min-height: 300px;
  }

  .tab-bar {
    grid-row: 2;
  }

  .tab-panel__text {
    grid-row: 3;
  }
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 16px var(--section-padding-x);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .header__nav.open {
    display: flex;
  }

  .header__hamburger {
    display: flex;
  }

  .header__contact {
    height: auto;
    padding: 8px 16px;
  }

  .hero {
    min-height: 400px;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 22px;
  }

  .value-row {
    flex-direction: column;
    gap: 12px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }

  .about-intro {
    flex-direction: column;
  }

  .about-work {
    flex-direction: column;
  }

  .feature-cards {
    grid-template-columns: 1fr;
  }

  .tab-bar {
    overflow-x: auto;
  }

  .split__content h1 {
    font-size: 40px;
  }

  .split__content .split__heading-lg {
    font-size: 40px;
  }

  .split__content .split__heading-md {
    font-size: 36px;
  }

  .team-lead__heading {
    font-size: 32px;
  }

  .stats .grid-4 {
    grid-template-columns: 1fr;
  }

  .stat__number {
    font-size: 48px;
  }
}


