:root {
  --section-shade-1: #ece8e2;
  --section-shade-2: #c9c3b9;
  --background: #c9c3b9;
  --foreground: #1f1f1f;
  --heading: #141414;
  --card: #f5f2ec;
  --primary: #009488;
  --primary-foreground: #fff;
  --muted-foreground: #616161;
  --border: #aca69e;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body, h1, h2, h3, h4, h5, h6, p, a, span, div, ul, li, ol, header, footer{
    font-family: "Inter", sans-serif !important;
}
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  background: var(--background);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.header-row {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 4.25rem;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.desktop-nav > a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.desktop-nav > a:hover {
  color: var(--primary);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--foreground);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.25rem 1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.mobile-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.mobile-nav.is-open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.page-content.page-hidden {
  opacity: 0;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-media {
  position: absolute;
  inset: -6rem 0 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.62) 35%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  margin-left: 8rem;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.7rem 0.95rem;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0;
  color: #fff;
}

.hero-content h1 span,
.section-heading em,
.split-layout em {
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #34d2c4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-top: 1.35rem;
  color: #ccc;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.75;
  max-width: 620px;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--section-shade-1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.5rem 0.5rem;
  border-right: 1px solid var(--border);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--primary);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg,
.why-icon svg {
  width: 100%;
  height: 100%;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-dark {
  background: var(--section-shade-2);
}

.section-light {
  background: var(--section-shade-1);
}

.section-heading {
  margin-bottom: 2.6rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading span,
.split-label {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary);
  font-weight: 600;
}

.section-heading h2,
.split-layout h2 {
  margin: 0.9rem 0 0;
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--heading);
}

.services-carousel {
  position: relative;
  overflow: hidden;
}

.services-track {
  display: flex;
  gap: 1px;
}

.service-card {
  flex: 0 0 calc(33.333% - 1px);
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 100%;
}

.service-image-wrap {
  overflow: hidden;
  height: 15.5rem;
}

.service-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: transform 0.7s ease, filter 0.7s ease;
}

.service-card:hover .service-image-wrap img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.service-body {
  padding: 1.25rem;
}

.service-body h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.service-body p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.service-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-tags span {
  font-size: 0.64rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.34rem 0.45rem;
}

.carousel-controls {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.carousel-btn {
  width: 2.45rem;
  height: 2.45rem;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.4rem;
  display: grid;
}

.process-step-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  margin-bottom: 1rem;
  background: color-mix(in srgb, var(--primary) 5%, transparent);
}

.process-step-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  display: inline-flex;
}

.process-step-icon svg {
  width: 100%;
  height: 100%;
}

.process-step-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.process-card strong {
  color: var(--primary);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.process-card h3 {
  margin: 0.65rem 0;
}

.process-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.split-layout p {
  margin-top: 1.1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
}

.why-icon {
  width: 32px;
  height: 32px;
  color: var(--primary);
  display: inline-flex;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  margin-top: 0;
}

.why-card p {
  margin: 0;
}

.scenarios-section {
  overflow: hidden;
}

.scenarios-bg {
  inset: -6rem 0 0;
}

.scenarios-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.scenarios-content {
  position: relative;
  z-index: 3;
}

.services-page {
  overflow-x: hidden;
}

.services-hero {
  position: relative;
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.25) 100%);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
    margin-left: 8rem;
}

.services-hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 0;
}

.services-hero p {
  color: #ccc;
}

.services-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin: 1.4rem 0;
}

.services-hero-stats article {
  padding-right: 1.15rem;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.services-hero-stats article:last-child {
  border-right: 0;
}

.services-hero-stats p {
  margin: 0;
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: 800;
}

.services-hero-stats span {
  color: #ccc;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.services-directory-description {
  max-width: 900px;
  margin: 1rem auto 0;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.services-mobile-list {
  margin-top: 2.6rem;
  display: none;
  gap: 1rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.service-detail-image-wrap {
  position: relative;
}

.service-detail-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.service-detail-number {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid var(--border);
  background: rgba(236, 232, 226, 0.95);
  padding: 0.4rem 0.55rem;
}

.service-detail-body h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.service-detail-body > p {
  margin-top: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.service-detail-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 1rem 0;
}

.service-detail-columns > div {
  border: 1px solid var(--border);
  background: #cec8bf;
  padding: 0.8rem;
}

.service-detail-columns strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.55rem;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.service-detail-columns ul {
  margin: 0;
  padding-left: 1rem;
}

.service-detail-columns li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
  font-size: 0.8rem;
}

.services-desktop-directory {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.2rem;
}

.services-directory-nav {
  border: 1px solid color-mix(in srgb, var(--primary) 25%, var(--border));
  padding: 1rem;
  background: linear-gradient(to bottom, #dfdbd3, #cfc9bf);
}

.directory-label {
  margin: 0 0 0.6rem;
  color: var(--primary);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.directory-subtext {
  margin: 0 0 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.directory-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(0, 148, 136, 0.35), transparent);
  margin-bottom: 0.8rem;
}

.services-directory-nav nav {
  display: grid;
  gap: 0.45rem;
}

.services-nav-btn {
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  padding: 0.6rem 0.65rem;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background: rgba(236, 232, 226, 0.5);
  cursor: pointer;
  transition: all 0.25s ease;
}

.services-nav-btn.active {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(236, 232, 226, 0.88);
}

.services-execution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.services-execution-label {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  padding: 0.55rem 0.65rem;
}

.services-execution h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.services-execution-description {
  color: var(--muted-foreground);
  line-height: 1.75;
  margin: 1rem 0 1.2rem;
}

.services-execution-steps {
  display: grid;
  gap: 0.75rem;
}

.services-step-card {
  border: 1px solid var(--border);
  padding: 0.9rem;
  background: #cec8bf;
}

.services-step-number {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-step-card h3 {
  margin: 0 0 0.45rem;
}

.services-step-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.6;
}

.services-request-panel {
  border: 1px solid var(--border);
  background: #cec8bf;
  padding: 1rem;
}

.services-request-eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.services-request-panel h3 {
  margin: 0.7rem 0 0.5rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.services-request-panel > p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.services-request-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.services-request-form label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted-foreground);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-request-form input,
.services-request-form select,
.services-request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #ded9d0;
  padding: 0.72rem 0.85rem;
  font: inherit;
}

.services-request-form input:focus,
.services-request-form select:focus,
.services-request-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.ceo-page {
  overflow-x: hidden;
}

.ceo-hero-section {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--section-shade-1);
}

.ceo-hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% -30%, rgba(0, 148, 136, 0.12), transparent 60%);
}

.ceo-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1150px;
  padding-top: 8.8rem;
  padding-bottom: 4.5rem;
}

.ceo-hero-top {
  margin-bottom: 1.5rem;
}

.ceo-hero-badge {
  margin: 0;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--primary);
}

.ceo-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.ceo-hero-content-inner {
  display: flex;
  gap: 1rem;
}

.ceo-hero-line {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(to bottom, var(--primary), rgba(0, 148, 136, 0.4));
}

.ceo-hero-content h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.ceo-hero-content p {
  margin-top: 1.2rem;
  font-size: clamp(0.95rem, 2vw, 1.06rem);
  line-height: 1.8;
}

.ceo-hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.ceo-btn-outline {
  border: 1px solid var(--border);
  background: var(--card);
}

.ceo-btn-outline:hover {
  color: var(--primary);
  border-color: color-mix(in srgb, var(--primary) 55%, var(--border));
}

.ceo-hero-image-wrap {
  max-width: 380px;
  margin-left: auto;
}

.ceo-hero-image-gradient {
  position: absolute;
  inset: -0.9rem;
  background: linear-gradient(to bottom right, rgba(0, 148, 136, 0.2), rgba(0, 148, 136, 0.04), transparent);
}

.ceo-hero-image-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.ceo-hero-image-box {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 340px;
  background: var(--section-shade-2);
  overflow: hidden;
}

.ceo-hero-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.ceo-hero-image-box::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 33%;
  background: linear-gradient(to top, rgba(31, 31, 31, 0.15), transparent);
}

.ceo-hero-caption {
  margin-top: 0.7rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.ceo-bio-section {
  position: relative;
}

.ceo-bio-radials {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 10%, rgba(0, 148, 136, 0.1), transparent 50%), radial-gradient(ellipse 60% 40% at 100% 80%, rgba(0, 148, 136, 0.06), transparent 45%);
}

.ceo-bio-section .container {
  position: relative;
  z-index: 2;
  max-width: 1150px;
}

.ceo-bio-header h2 {
  margin: 0;
  color: var(--primary);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.ceo-bio-header h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.ceo-bio-header-line {
  margin-top: 0.8rem;
  width: 64px;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(0, 148, 136, 0.3));
}

.ceo-stats-grid {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ceo-stat-card {
  min-width: 120px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 86%, transparent);
  padding: 0.7rem 0.8rem;
  text-align: center;
}

.ceo-stat-card p {
  margin: 0;
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 900;
}

.ceo-stat-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.ceo-quote-card {
  margin: 1.35rem 0 0;
  max-width: 820px;
  border-left: 4px solid var(--primary);
  background: color-mix(in srgb, var(--card) 76%, transparent);
  padding: 1rem 1.05rem;
}

.ceo-quote-card p {
  margin: 0;
  line-height: 1.7;
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.ceo-quote-card cite {
  display: block;
  margin-top: 0.55rem;
  font-style: normal;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
}

.ceo-bio-columns {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.ceo-bio-column {
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--card) 70%, transparent);
  padding: 1rem;
}

.ceo-bio-column p {
  margin: 0;
  line-height: 1.9;
}

.ceo-highlights-card {
  margin-top: 1.4rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.2rem;
}

.ceo-highlights-card h4 {
  margin: 0 0 0.9rem;
  color: var(--primary);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.ceo-highlights-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.ceo-highlights-grid li {
  display: flex;
  gap: 0.7rem;
  border-left: 2px solid rgba(0, 148, 136, 0.55);
  background: color-mix(in srgb, var(--card) 75%, transparent);
  padding: 0.72rem 0.55rem 0.72rem 0.75rem;
  line-height: 1.6;
}

.ceo-highlight-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: #ece8e2;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ceo-highlight-icon svg {
  width: 15px;
  height: 15px;
}

.ceo-highlights-cta {
  margin: 1rem 0 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
}

.ceo-highlights-cta a {
  color: var(--primary);
  font-weight: 700;
}

.ceo-highlights-cta a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-us-page {
  overflow-x: hidden;
}

.about-us-hero {
  position: relative;
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-us-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.about-us-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.25) 100%);
}

.about-us-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin-left: 8rem;
}

.about-us-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
}

.about-us-hero p {
  color: #ccc;
  line-height: 1.8;
}

.about-us-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-us-section-header {
  max-width: 760px;
}

.about-us-section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.about-us-section-header span {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  padding: 0.5rem 0.7rem;
}

.about-us-section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.15;
}

.about-us-section-header p {
  margin-top: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-us-mission-stats {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-us-mission-stats article {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.about-us-mission-stats p {
  margin: 0;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 900;
}

.about-us-mission-stats span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}

.about-us-image-card {
  position: relative;
}

.about-us-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-us-image-note {
  position: absolute;
  left: -1.2rem;
  bottom: -1.2rem;
  max-width: 280px;
  border: 1px solid color-mix(in srgb, var(--primary) 35%, transparent);
  background: #ece8e2;
  padding: 0.8rem;
}

.about-us-image-note p {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-us-image-note span {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.about-us-values-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-us-value-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.about-us-value-card h3 {
  margin: 0 0 0.55rem;
}

.about-us-value-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-us-commitment-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-us-commitment-grid img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-us-commitment-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us-commitment-card > span {
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-us-commitment-card h3 {
  margin: 0.7rem 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
}

.about-us-commitment-card em {
  display: block;
  font-style: normal;
  background: linear-gradient(135deg, var(--primary) 0%, #34d2c4 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us-commitment-card p {
  margin: 0 0 0.65rem;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-us-cta-card {
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  background: linear-gradient(to right, #dfdbd3, #cfc9bf);
  padding: 2rem;
  text-align: center;
}

.about-us-cta-card > span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.about-us-cta-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-us-cta-card p {
  max-width: 820px;
  margin: 1rem auto 0;
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-us-cta-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about-us-cta-outline {
  border: 1px solid rgba(31, 31, 31, 0.2);
  color: var(--foreground);
}

.about-us-cta-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.contact-page {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding: 9.5rem 0 5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.25) 100%);
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-left: 8rem;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 1.05;
}

.contact-hero p {
  color: #ccc;
  line-height: 1.8;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-panel {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1rem;
}

.contact-panel > span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-panel h2,
.contact-panel h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.15;
}

.contact-panel p {
  color: var(--muted-foreground);
  line-height: 1.75;
}

.contact-channel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}

.contact-channel-cards article {
  border: 1px solid var(--border);
  background: #cec8bf;
  padding: 0.8rem;
}

.contact-channel-cards p {
  margin: 0 0 0.4rem;
  color: var(--primary);
  font-size: 0.63rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-channel-cards span {
  word-break: break-word;
}

.contact-panel img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.contact-panel:first-child img {
  height: 320px;
}

.contact-panel:last-child img {
  height: 560px;
}

.contact-request-card {
  border: 1px solid color-mix(in srgb, var(--primary) 35%, var(--border));
  background: linear-gradient(to right, #dfdbd3, #cfc9bf);
  padding: 1.5rem;
}

.contact-request-form-wrap > span,
.contact-request-success > span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-request-form-wrap h2,
.contact-request-success h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.contact-request-form-wrap p,
.contact-request-success p {
  margin-top: 0.8rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  max-width: 900px;
}

.contact-request-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.contact-request-form input,
.contact-request-form select,
.contact-request-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(236, 232, 226, 0.6);
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.contact-request-form input:focus,
.contact-request-form select:focus,
.contact-request-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}

/* Typography parity with React source pages */
:root {
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --font-script: "Allura", cursive;
}

body {
  font-family: var(--font-sans);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-badge {
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 600;
}

.btn {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.desktop-nav > a {
  font-size: 0.75rem;
}

.mobile-nav a {
  font-size: 0.875rem;
}

/* Home page typography */
.hero-content h1 {
  font-size: 1.5rem;
  line-height: 1.05;
}

.hero-content p {
  font-size: 0.75rem;
  line-height: 1.65;
}

.section-heading h2,
.split-layout h2,
.services-execution h2,
.contact-request-form-wrap h2,
.contact-request-success h2,
.about-us-section-header h2,
.about-us-cta-card h2,
.contact-panel h2,
.contact-panel h3 {
  font-size: 1.875rem;
  line-height: 1.1;
}

.section-heading span,
.split-label,
.services-execution-label,
.about-us-section-header span,
.contact-panel > span,
.contact-request-form-wrap > span,
.contact-request-success > span,
.about-us-cta-card > span {
  font-size: 0.75rem;
}

.section-heading p,
.split-layout p,
.service-body p,
.process-card p,
.why-card p,
.scenario-card p,
.testimonial-card blockquote,
.faq-content p,
.services-directory-description,
.services-execution-description,
.services-step-card p,
.services-request-panel > p,
.ceo-hero-content p,
.ceo-hero-caption,
.ceo-bio-column p,
.ceo-quote-card p,
.ceo-highlights-cta,
.about-us-section-header p,
.about-us-value-card p,
.about-us-commitment-card p,
.about-us-cta-card p,
.contact-panel p,
.contact-request-form-wrap p,
.contact-request-success p {
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Services, About Us, Contact hero typography */
.services-hero h1,
.about-us-hero h1,
.contact-hero h1 {
  font-size: 1.875rem;
  line-height: 1.05;
}

.services-hero p,
.about-us-hero p,
.contact-hero p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.services-hero-stats p {
  font-size: 1.5rem;
}

.services-hero-stats span {
  font-size: 11px;
  letter-spacing: 0.18em;
}

/* About the CEO hero typography */
.ceo-hero-badge {
  font-size: 10px;
  letter-spacing: 0.24em;
}

.ceo-hero-content h1 {
  font-size: 2.25rem;
  line-height: 0.95;
}

.ceo-bio-header h3 {
  font-size: 1.5rem;
  line-height: 1.15;
}

.ceo-highlights-card h4 {
  font-size: 0.875rem;
}

.ceo-stat-card p {
  font-size: 1.875rem;
}

.ceo-stat-card span,
.ceo-quote-card cite {
  font-size: 10px;
}

@media (min-width: 640px) {
  .btn {
    font-size: 0.875rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.875rem;
  }

  .hero-content p {
    font-size: 0.875rem;
  }

  .services-hero h1,
  .about-us-hero h1,
  .contact-hero h1 {
    font-size: 2.25rem;
  }

  .services-hero p,
  .about-us-hero p,
  .contact-hero p {
    font-size: 1rem;
  }

  .services-hero-stats p {
    font-size: 1.875rem;
  }

  .ceo-hero-content h1 {
    font-size: 3rem;
  }

  .ceo-hero-content p {
    font-size: 1rem;
  }

  .ceo-bio-header h3 {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section-heading h2,
  .split-layout h2,
  .services-execution h2,
  .contact-request-form-wrap h2,
  .contact-request-success h2,
  .about-us-section-header h2,
  .about-us-cta-card h2,
  .contact-panel h2,
  .contact-panel h3 {
    font-size: 3rem;
  }

  .services-hero h1,
  .about-us-hero h1,
  .contact-hero h1 {
    font-size: 3rem;
  }

  .services-hero p,
  .about-us-hero p,
  .contact-hero p {
    font-size: 1.125rem;
  }

  .ceo-hero-content h1 {
    font-size: 3.75rem;
  }

  .ceo-bio-header h3 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .services-hero h1,
  .about-us-hero h1,
  .contact-hero h1 {
    font-size: 3.75rem;
  }

  .ceo-hero-content h1 {
    font-size: 4.5rem;
  }
}

.scenarios-content h2 {
  color: #fff;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.scenario-card {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem;
}

.scenario-card strong {
  color: var(--primary);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.scenario-card h3 {
  color: #fff;
  margin: 0.65rem 0;
}

.scenario-card p {
  color: #e3e3e3;
  margin: 0;
  line-height: 1.65;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.testimonial-card .stars {
  color: var(--primary);
  letter-spacing: 0.35em;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.testimonial-card .name {
  margin: 0;
  font-weight: 700;
}

.testimonial-card .title {
  margin: 0.2rem 0 0;
  color: var(--muted-foreground);
  font-size: 0.86rem;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(0, 148, 136, 0.3) 50px), repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(0, 148, 136, 0.3) 50px);
  background-size: 50px 50px;
}

.faq-section .container {
  position: relative;
  z-index: 2;
}

.faq-list {
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 1.25rem 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
    font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.faq-content p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.faq-item.active .faq-content {
  max-height: 180px;
  padding-bottom: 1.2rem;
}

.contact-layout .contact-details {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.contact-layout .contact-details li {
  color: var(--muted-foreground);
}

.contact-layout .contact-details strong {
  color: var(--heading);
}

.contact-layout .contact-info-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.contact-layout .contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.contact-layout .contact-info-icon-wrap {
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--primary) 30%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-layout .contact-info-icon {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-layout .contact-info-content {
  min-width: 0;
}

.contact-layout .contact-info-label {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-layout .contact-info-value {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  line-height: 1.4;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: #cfc9bf;
  padding: 0.8rem 0.9rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.full-width {
  width: 100%;
}

.form-note {
  text-align: center;
  margin: 0.25rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted-foreground);
  font-size: 0.64rem;
}

.contact-success {
  border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
  background: var(--card);
  padding: 1.8rem;
}

.contact-success h3 {
  margin: 0 0 0.5rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 4rem 0 1.8rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-brand .brand-logo {
  margin-bottom: 1rem;
}

.footer-copy p {
  margin: 0 0 0.5rem;
  color: var(--muted-foreground);
}

.footer-copy p > strong{
    color: #000;
}

.footer-description {
  margin-top: 1rem;
  max-width: 560px;
}

.site-footer h4 {
  margin: 0 0 0.75rem;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p,
.footer-links a {
  font-size: 0.72rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  transition: opacity 0.7s ease;
}

.splash-screen.hidden {
  opacity: 0;
  pointer-events: none;
}

.splash-content {
  text-align: center;
}

.splash-logo {
  width: min(270px, 86vw);
  margin-inline: auto;
  transform: scale(0.9);
  opacity: 0;
  transition: all 1s ease;
}

.splash-screen.phase-1 .splash-logo {
  transform: scale(1);
  opacity: 1;
}

.splash-text-wrap {
  margin-top: 0.8rem;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.7s ease;
}

.splash-screen.phase-2 .splash-text-wrap {
  opacity: 1;
  transform: translateY(0);
}

.splash-title {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
}

.splash-subtitle {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.splash-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.splash-screen.phase-1 .splash-corner {
  opacity: 1;
}

.splash-corner-top {
  top: 2rem;
  left: 2rem;
  border-top: 1px solid rgba(0, 148, 136, 0.4);
  border-left: 1px solid rgba(0, 148, 136, 0.4);
}

.splash-corner-bottom {
  bottom: 2rem;
  right: 2rem;
  border-bottom: 1px solid rgba(0, 148, 136, 0.4);
  border-right: 1px solid rgba(0, 148, 136, 0.4);
}

.splash-scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 148, 136, 0.45);
  transform: translateY(-100%);
}

.splash-screen.phase-2 .splash-scan-line {
  animation: scan-line 1.5s ease-in-out forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(2px);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes scan-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100vh);
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .services-track {
    gap: 0.75rem;
  }

  .service-card {
    flex-basis: calc(50% - 0.375rem);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-desktop-directory,
  .services-execution-grid {
    grid-template-columns: 1fr;
  }

  .ceo-hero-grid,
  .ceo-bio-columns,
  .ceo-highlights-grid {
    grid-template-columns: 1fr;
  }

  .about-us-two-col,
  .about-us-values-grid,
  .about-us-commitment-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .about-us-image-card img {
    height: 360px;
  }

  .ceo-hero-image-wrap {
    margin-inline: auto;
  }

  .ceo-hero-content-inner {
    display: block;
  }

  .ceo-hero-line {
    display: none;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
  }

  .services-mobile-list {
    display: grid;
  }

  .services-desktop-directory {
    display: none;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(1320px, calc(100% - 1.25rem));
  }

  .hero-section {
    padding-top: 7.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-grid,
  .scenarios-grid,
  .testimonials-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .services-track {
    gap: 0.6rem;
  }

  .service-card {
    flex-basis: calc(100% - 0.3rem);
  }

  .carousel-controls {
    justify-content: center;
  }

  .faq-item.active .faq-content {
    max-height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .services-hero {
    padding-top: 8rem;
  }

  .ceo-hero-container {
    padding-top: 7.6rem;
    padding-bottom: 3.3rem;
  }

  .about-us-hero {
    padding-top: 8rem;
  }

  .about-us-image-note {
    position: static;
    max-width: 100%;
    margin-top: 0.8rem;
  }

  .about-us-mission-stats {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    padding-top: 8rem;
  }

  .contact-channel-cards {
    grid-template-columns: 1fr;
  }

  .contact-panel:last-child img {
    height: 360px;
  }

  .contact-request-card {
    padding: 1rem;
  }

  .about-us-cta-card {
    padding: 1.2rem;
  }

  .ceo-hero-top,
  .ceo-hero-content,
  .ceo-hero-caption,
  .ceo-bio-header,
  .ceo-highlights-card h4,
  .ceo-highlights-cta {
    text-align: center;
  }

  .ceo-stats-grid {
    justify-content: center;
  }

  .ceo-bio-header-line {
    margin-inline: auto;
  }

  .services-hero-stats article {
    border-right: 0;
    padding-right: 0;
  }

  .service-detail-columns {
    grid-template-columns: 1fr;
  }
}
