:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #09090b;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.2);
  --text: #f7f7f7;
  --muted: #b8b8c0;
  --muted-2: #85858f;
  --accent: #b92e43;
  --accent-strong: #d83a52;
  --accent-soft: rgba(185, 46, 67, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-height: 92px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% 0%, rgba(185, 46, 67, 0.15), transparent 34rem),
    linear-gradient(180deg, #050506 0%, #070708 45%, #050506 100%);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}

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

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(255, 111, 131, 0.9);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--text);
  color: #050506;
  padding: 10px 14px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.9), rgba(5, 5, 6, 0.62));
  backdrop-filter: blur(18px);
}

.site-header__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(16, 16, 18, 0.76);
  box-shadow: var(--shadow);
  padding: 10px 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.brand__mark {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-soft), 0 0 30px rgba(185, 46, 67, 0.55);
  flex: 0 0 auto;
}

.brand__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  padding: 6px;
}

.site-nav a {
  border-radius: 8px;
  padding: 12px 16px;
  color: #d8d8de;
  font-size: 14px;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  padding: 0 24px;
  box-shadow: 0 16px 40px rgba(185, 46, 67, 0.28);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong)) !important;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

.button--full {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.section,
.hero {
  scroll-margin-top: var(--header-height);
}

.section {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 98px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.section--full {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 88px 0 108px;
}

.hero__grid {
  display: grid;
  place-items: center;
  text-align: center;
}

.hero__copy {
  width: min(850px, 100%);
}

.eyebrow,
.section__label {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.075em;
  font-weight: 950;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero__lead,
.section__head p,
.split-layout__intro p,
.final-cta p,
.about-copy p,
.contact-panel__meta p,
.site-footer p {
  color: var(--muted);
}

.hero__lead {
  max-width: 680px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.section__head {
  max-width: 720px;
  margin-bottom: 34px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-card,
.contact-panel,
.about-visual,
.faq-item {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.audience-card {
  min-height: 220px;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.audience-card:hover {
  border-color: rgba(185, 46, 67, 0.36);
  background: linear-gradient(180deg, rgba(185, 46, 67, 0.09), rgba(255, 255, 255, 0.032));
  transform: translateY(-3px);
}

.audience-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  opacity: 0.9;
}

.audience-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: center;
}

.split-layout__intro,
.service-table {
  min-width: 0;
}

.service-table {
  width: 100%;
}

.implementation-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 14px;
  min-height: 430px;
  min-width: 0;
}

.implementation-tabs {
  display: grid;
  gap: 10px;
  grid-auto-rows: 1fr;
  align-content: stretch;
  min-width: 0;
}

.implementation-tab {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: #d6d6dc;
  padding: 12px 14px;
  text-align: left;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.implementation-tab span {
  flex: 0 0 auto;
  min-width: 24px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.implementation-tab:hover,
.implementation-tab.is-active {
  border-color: rgba(185, 46, 67, 0.45);
  background: linear-gradient(135deg, rgba(185, 46, 67, 0.22), rgba(255, 255, 255, 0.045));
  color: var(--text);
}

.implementation-tab.is-active {
  box-shadow: inset 3px 0 0 rgba(255, 111, 131, 0.72);
}

.implementation-showcase {
  position: relative;
  min-width: 0;
  min-height: 100%;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(185, 46, 67, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  padding: 28px;
  animation: softPanelIn 220ms ease both;
}

.implementation-showcase::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -80px;
  border: 1px solid rgba(185, 46, 67, 0.28);
  background: rgba(185, 46, 67, 0.08);
  transform: rotate(18deg);
}

.implementation-showcase__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.implementation-showcase__meta span {
  color: var(--accent-strong);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 950;
  line-height: 0.85;
  letter-spacing: -0.09em;
}

.implementation-showcase__meta p {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.implementation-showcase h3,
.implementation-showcase p,
.implementation-showcase .service-card__tools {
  position: relative;
  z-index: 1;
}

.implementation-showcase h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.implementation-showcase > p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.service-card__tools {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 24px;
}

.tool-icon {
  min-height: 48px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.04);
  color: #dedee5;
  padding: 6px 5px;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.tool-icon:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.065);
  transform: translateY(-2px);
}

.tool-icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.tool-icon img.tool-icon__img--original {
  width: 34px;
  height: auto;
}

.tool-icon__fallback {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(185, 46, 67, 0.45);
  border-radius: 5px;
  color: var(--accent-strong);
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tool-icon span {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
}

.tool-icon__more {
  position: absolute;
  right: 8px;
  top: -20px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border: 1px solid rgba(255, 70, 103, 0.28);
  border-radius: 999px;
  background: rgba(185, 46, 67, 0.12);
  color: #ff6f83;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
  padding: 0 10px;
  letter-spacing: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 540px);
  gap: 56px;
  align-items: center;
}

.final-cta {
  max-width: 620px;
}

.contact-panel {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.contact-panel__meta {
  margin-bottom: 24px;
}

.contact-panel__meta .section__label {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: #dedee5;
  font-size: 14px;
  font-weight: 850;
}

.field input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  outline: none;
  padding: 0 18px;
}

.field input:focus {
  border-color: rgba(255, 111, 131, 0.7);
  box-shadow: 0 0 0 4px rgba(185, 46, 67, 0.16);
}

.field input[aria-invalid="true"] {
  border-color: var(--accent-strong);
}

.form-status {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.form-status {
  min-height: 1.4em;
  color: #ff9aaa;
}

.about-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 620px);
  justify-content: center;
  align-items: center;
  gap: 64px;
}

.about-visual {
  position: relative;
  width: 275px;
  aspect-ratio: 941 / 1449;
  margin: 0;
  border: 0;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  object-position: center center;
  opacity: 1;
}

.about-copy {
  max-width: 620px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.faq-item[open] {
  border-color: rgba(185, 46, 67, 0.38);
  background: linear-gradient(180deg, rgba(185, 46, 67, 0.11), rgba(255, 255, 255, 0.032));
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span:first-child {
  color: var(--text);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.faq-item__icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease, opacity 160ms ease;
}

.faq-item[open] .faq-item__icon {
  border-color: rgba(185, 46, 67, 0.45);
  background: rgba(185, 46, 67, 0.14);
  transform: rotate(180deg);
}

.faq-item[open] .faq-item__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  padding: 0 22px 22px;
  animation: faqAnswerIn 180ms ease both;
  transform-origin: top;
}

@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding: 48px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer__brand {
  display: grid;
  gap: 18px;
}

.site-footer__contact {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer .brand {
  width: fit-content;
  font-size: 16px;
}

.site-footer p {
  margin: 0;
}

.footer-social {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8d8de;
  padding: 0 18px;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, color 160ms ease;
}

.footer-social:hover {
  border-color: rgba(185, 46, 67, 0.42);
  background: rgba(185, 46, 67, 0.1);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-social__icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.footer-social__icon img {
  width: 17px;
  height: 17px;
}

.site-footer a:hover {
  color: var(--text);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes softPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 8px 0;
  }

  .site-header__inner {
    min-height: 60px;
    border-radius: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }

  .menu-toggle__bars,
  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
  }

  .menu-toggle__bars {
    position: relative;
  }

  .menu-toggle__bars::before,
  .menu-toggle__bars::after {
    position: absolute;
    left: 0;
  }

  .menu-toggle__bars::before {
    top: -6px;
  }

  .menu-toggle__bars::after {
    top: 6px;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(15, 15, 17, 0.96);
    padding: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    text-align: center;
  }

  .section,
  .section--full {
    min-height: auto;
    padding: 72px 0;
  }

  .hero__lead {
    font-size: 16px;
  }

  .audience-grid,
  .split-layout,
  .contact-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-layout,
  .contact-grid,
  .about-grid,
  .faq-grid {
    gap: 30px;
  }

  .service-table {
    width: 100%;
  }

  .implementation-panel {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
  }

  .implementation-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .implementation-tab {
    min-width: 0;
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    font-size: 13px;
    line-height: 1.2;
  }

  .implementation-tab.is-active {
    transform: none;
  }

  .implementation-showcase {
    min-height: auto;
  }

  .implementation-showcase__meta {
    margin-bottom: 22px;
  }

  .about-grid {
    justify-items: center;
  }

  .about-visual {
    width: min(250px, 76vw);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand__name {
    max-width: min(220px, 58vw);
    font-size: 13px;
  }

  .section,
  .section--full {
    padding: 62px 0;
  }

  h1 {
    font-size: clamp(32px, 10vw, 39px);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  h2 {
    font-size: clamp(27px, 7vw, 32px);
    letter-spacing: -0.04em;
  }

  .eyebrow,
  .section__label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero__actions {
    display: grid;
  }

  .audience-card,
  .contact-panel,
  .faq-item {
    padding: 20px;
  }

  .implementation-showcase {
    padding: 24px 20px;
  }

  .implementation-showcase::before {
    width: 150px;
    height: 150px;
    right: -64px;
    top: -64px;
  }

  .implementation-showcase__meta {
    margin-bottom: 26px;
  }

  .implementation-showcase__meta span {
    font-size: 42px;
  }

  .implementation-showcase h3 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .implementation-showcase > p {
    font-size: 15px;
    line-height: 1.65;
  }

  .service-card__tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
  }

  .tool-icon {
    min-height: 54px;
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
    padding: 7px 4px;
  }

  .tool-icon span {
    font-size: 9px;
  }

  .tool-icon img.tool-icon__img--original {
    width: 32px;
  }

  .contact-panel {
    border-radius: 12px;
  }
}

.eyebrow,
.section__label {
  color: #b92e43 !important;
}
