:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #0b0b0b;
  --muted: #4b4b4b;
  --border: #e8e8e8;
  --accent: #0066cc;
  --accent-rgb: 0, 102, 204;
  --gradient-start: #f8f9fa;
  --gradient-end: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand__logo { display: block; height: 40px; width: 40px; }

.nav { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.nav__link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.nav__link:hover { text-decoration: underline; }
.nav__link--active {
  border-bottom: 2px solid var(--text);
  padding-bottom: 2px;
}

.page-hero {
  padding: 44px 0 32px;
  border-bottom: 1px solid var(--border);
}

.page-hero--with-image .container {
  display: flex !important;
  flex-direction: column !important;
  gap: 32px;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero--with-image .page-hero__title {
  margin: 0;
  text-align: center;
}

.page-hero--with-image .page-hero__text {
  margin: 0;
  text-align: center;
  max-width: 100%;
}

.page-hero--with-image .page-hero__image {
  max-height: 380px;
  width: 100%;
  object-fit: cover;
}

.page-hero__image {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-hero__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-hero__image--mono {
  filter: grayscale(100%) contrast(1.05);
}

.page-hero__title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.page-hero__text {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  max-width: 720px;
}

.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.hero__bg-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
  background-image: 
    linear-gradient(30deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
    linear-gradient(150deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
    linear-gradient(30deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent)),
    linear-gradient(150deg, var(--accent) 12%, transparent 12.5%, transparent 87%, var(--accent) 87.5%, var(--accent));
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 6px 14px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.hero__title {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.8px;
  font-weight: 800;
}

.hero__subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 580px;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid var(--text);
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.button--secondary:hover {
  background: var(--text);
  color: #fff;
}

.hero__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 32px;
  background: radial-gradient(circle at center, rgba(0,102,204,0.03) 0%, transparent 70%);
  border-radius: 20px;
}

.hero__mark::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at 30% 40%, rgba(0,102,204,0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.mark {
  width: min(320px, 70vw);
  height: auto;
}

.mark--full {
  width: min(400px, 80vw);
  height: auto;
}

.trust-bar {
  padding: 24px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #fafafa 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.trust-bar__text {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.page-secondary .section {
  padding: 48px 0;
}

.page-secondary .section__text {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.page-services .section {
  padding: 48px 0;
}

.section--alt {
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

.section--gradient {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
}

.section--gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(0,102,204,0.02) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(0,82,163,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section__title {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section__text {
  margin: 0 0 32px;
  color: var(--muted);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.section__figure {
  margin: 0 auto 32px;
  max-width: 980px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.14) 0%,
    rgba(var(--accent-rgb), 0.04) 55%,
    rgba(var(--accent-rgb), 0.10) 100%
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section__figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.section__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Agentic AI layout: image on top, cards in row below */
.agentic-split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.agentic-split__image {
  margin: 0;
  border: 2px solid rgba(var(--accent-rgb), 0.08);
  border-radius: 18px;
  overflow: hidden;
  padding: 16px;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.12) 0%,
    rgba(var(--accent-rgb), 0.03) 55%,
    rgba(var(--accent-rgb), 0.08) 100%
  );
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.agentic-split__image:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12), 0 4px 10px rgba(0, 0, 0, 0.06);
  border-color: rgba(var(--accent-rgb), 0.14);
}

.agentic-split__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
}

.agentic-split__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}

.agentic-split__cards .card {
  margin: 0;
  padding: 24px 22px;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #2b2b2b;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.agentic-split__cards .card:hover {
  border-color: #d0d0d0;
  border-left-color: #000000;
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.agentic-split__cards .card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.agentic-split__cards .card__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.agentic-split__cards .card__icon {
  width: 20px;
  height: 20px;
  margin-bottom: 14px;
  color: #1a1a1a;
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.agentic-split__cards .card:hover .card__icon {
  opacity: 1;
  color: #000000;
  transform: scale(1.1);
}

.section__caption {
  margin: 12px 18px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}

/* Split content layout: text left, image right */
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}

.split-content__text {
  max-width: 100%;
}

.split-content__media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.14) 0%,
    rgba(var(--accent-rgb), 0.04) 55%,
    rgba(var(--accent-rgb), 0.10) 100%
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.split-content__media:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.split-content__media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .split-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.2);
}

.card--highlight {
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.card--highlight::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,102,204,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.card__icon {
  width: 18px;
  height: 18px;
  margin-bottom: 12px;
  display: block;
  color: var(--accent);
  opacity: 0.75;
}

.card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.service-card__icon {
  width: 20px;
  height: 20px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--accent);
  opacity: 0.75;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.card:hover .service-card__icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.card--feature {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid var(--border);
  position: relative;
  overflow: hidden;
}

.card--feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0,102,204,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card--feature:hover::before {
  opacity: 1;
}

.card__feature-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--accent);
  opacity: 0.75;
}

.card__feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.card--feature:hover .card__feature-icon {
  transform: scale(1.15) rotate(5deg);
}

.card__title { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.card__text { margin: 0; color: var(--muted); font-size: 14px; }

.cards--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.industry-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.industry-showcase__item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-showcase__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.industry-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.industry-showcase__item:hover img {
  transform: scale(1.05);
}

.industry-showcase__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  padding: 24px 20px 20px;
  color: white;
  transition: background 0.3s ease;
}

.industry-showcase__item:hover .industry-showcase__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.industry-showcase__overlay h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.industry-showcase__overlay p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.industry-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 18px;
  background: #fff;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.industry-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #0052a3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.industry-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
  transform: translateY(-4px);
}

.industry-item:hover::before {
  opacity: 1;
}

.industry-item__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.industry-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
}

.industry-item__desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.card--animate {
  animation: fadeInUp 0.6s ease-out;
}

.card--animate:nth-child(1) {
  animation-delay: 0.1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.card--animate:nth-child(2) {
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.card--animate:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.card--highlight:hover .card__icon {
  animation: float 1.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .card--animate {
    animation: none !important;
    opacity: 1 !important;
  }
  .card--highlight:hover .card__icon {
    animation: none !important;
  }
  .card,
  .industry-item {
    transition: none !important;
  }
}

/* Mobile responsiveness for agentic split layout */
@media (max-width: 900px) {
  .agentic-split__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-detail__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

/* Services page: add a modern split layout with imagery per section (scoped so Industries stays unchanged). */
.page-services .service-detail {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.page-services .service-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 102, 204, 0.18);
}

.page-services .service-detail__header {
  align-items: center;
  gap: 0;
}

.page-services .section--alt .service-detail {
  background: #fbfbfb;
}

.page-secondary .service-detail {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.page-secondary .section--alt .service-detail {
  background: #fbfbfb;
}

.page-services .service-detail__content {
  min-width: 0;
  max-width: 640px;
}

.page-services .service-detail__media {
  margin: 0;
}

.page-services .service-detail__image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  max-height: 420px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-services .service-detail__image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.page-services .service-detail--reverse .service-detail__content {
  order: 2;
}

.page-services .service-detail--reverse .service-detail__media {
  order: 1;
}

.service-detail__icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.service-detail h2 {
  font-size: 26px;
  margin: 0;
  letter-spacing: -0.2px;
}

.service-detail p {
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.75;
  font-size: 16px;
}

.service-detail ul {
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  line-height: 1.7;
  list-style: none;
}

.service-detail ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}

.page-services .service-detail ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(var(--accent-rgb), 0.7);
  font-weight: 600;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

.page-secondary .contact-content {
  gap: 28px;
}

.page-secondary .contact-info,
.page-secondary .contact-form-placeholder {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.contact-info h2 {
  font-size: 24px;
  margin: 0 0 12px;
}

.contact-info p {
  margin: 0;
  line-height: 1.6;
}

.contact-form-placeholder h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.contact-form-placeholder ul {
  margin: 0;
  padding-left: 20px;
}

.link { color: var(--text); font-weight: 700; }

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
  text-align: center;
}

.footer__inner {
  display: block;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .brand__logo { height: 34px; width: 34px; }
  .cards { grid-template-columns: 1fr; }
  .cards--wide { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-showcase { grid-template-columns: 1fr; }
  .contact-content { grid-template-columns: 1fr; gap: 28px; }

  .page-hero--with-image .container {
    grid-template-columns: 1fr;
  }

  .page-hero--with-image .page-hero__title,
  .page-hero--with-image .page-hero__text,
  .page-hero--with-image .page-hero__image {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .service-detail__icon {
    font-size: 24px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .page-services .service-detail {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    padding: 20px;
  }

  .page-secondary .contact-content {
    grid-template-columns: 1fr;
  }

  .page-services .service-detail--reverse .service-detail__content,
  .page-services .service-detail--reverse .service-detail__media {
    order: initial;
  }
}
