/* src/styles/app.css */
html,
body {
  height: 100%;
  width: 100%;
  min-height: 100vh;
  background: #f3f4f6;
  color: #111827;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
.font-serif {
  font-family: "Georgia", serif;
}
#root {
  width: 100%;
  height: 100%;
}
.service-card {
  min-height: 10rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  padding: 1.25rem 1.25rem 1.25rem 4.75rem;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.05);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.service-card .service-card-icon {
  left: 1.25rem;
  top: 1.25rem;
  transition: background 180ms ease, transform 180ms ease;
}
.service-card dt,
.service-card dd {
  transition: color 180ms ease;
}
.service-card:hover {
  border-color: #a40001;
  background: #a40001;
  box-shadow: 0 22px 48px rgba(164, 0, 1, 0.2);
  transform: translateY(-4px);
}
.service-card:hover .service-card-icon {
  background: #ffffff;
  transform: scale(1.05);
}
.service-card:hover .service-card-icon svg {
  color: #a40001;
}
.service-card:hover dt,
.service-card:hover dd {
  color: #ffffff;
}
.ai-section {
  background-color: #f6f7f8;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.ai-section__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(246, 247, 248, 0.97),
      rgba(246, 247, 248, 0.88) 52%,
      rgba(246, 247, 248, 0.74)),
    radial-gradient(
      circle at 82% 18%,
      rgba(164, 0, 1, 0.14),
      transparent 34%);
}
.ai-metric {
  border-left: 2px solid #a40001;
  padding-left: 1rem;
  text-align: left;
}
.ai-metric span {
  display: block;
  color: #111827;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
.ai-metric p {
  margin-top: 0.5rem;
  color: #4b5563;
  font-size: 0.8125rem;
  line-height: 1.35;
}
.ai-priority-grid {
  display: grid;
  gap: 1rem;
}
.ai-priority-card {
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 1.5rem;
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(12px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.ai-priority-card h3 {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
}
.ai-priority-card p {
  margin-top: 0.75rem;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}
.ai-priority-card:hover {
  border-color: rgba(164, 0, 1, 0.42);
  background: rgba(164, 0, 1, 0.92);
  box-shadow: 0 28px 70px rgba(164, 0, 1, 0.22);
  transform: translateY(-4px);
}
.ai-priority-card:hover h3,
.ai-priority-card:hover p {
  color: #ffffff;
}
.footer-panel {
  background: #111827;
  color: #ffffff;
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.footer-brand {
  display: grid;
  gap: 0.85rem;
  max-width: 48rem;
}
.footer-brand p {
  color: #fca5a5;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0;
  text-transform: uppercase;
}
.footer-brand h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
}
.footer-contact-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-top: 2.5rem;
}
.footer-contact-card {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #e5e7eb;
  display: flex;
  gap: 0.85rem;
  min-height: 4.5rem;
  padding: 1rem;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}
.footer-contact-card svg {
  color: #fca5a5;
  flex: 0 0 auto;
  height: 1.35rem;
  width: 1.35rem;
}
.footer-contact-card:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #111827;
  transform: translateY(-2px);
}
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
}
.footer-bottom p,
.footer-bottom a {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0;
}
.footer-bottom a {
  font-weight: 700;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #ffffff;
}
@media (min-width: 1024px) {
  .ai-priority-grid {
    align-content: center;
  }
  .ai-priority-card:nth-child(2) {
    margin-left: 2rem;
  }
  .footer-contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .footer-bottom {
    flex-direction: row;
  }
}
@media (max-width: 640px) {
  .ai-section__shade {
    background:
      linear-gradient(
        180deg,
        rgba(246, 247, 248, 0.98),
        rgba(246, 247, 248, 0.9));
  }
  .ai-metric {
    padding-left: 0.75rem;
  }
}

/* src/components/Clients.css */
.clients-wrapper {
  background: #fff;
  padding: 6rem 0;
  overflow: hidden;
}
.clients-title {
  font-family: Georgia, serif;
  text-align: center;
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #111;
}
.clients-note {
  text-align: center;
  font-style: italic;
  font-size: .875rem;
  color: #6b7280;
}
.rows {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.row-viewport {
  overflow: hidden;
  width: 100%;
}
.row-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 2rem;
  will-change: transform;
}
.client-chip {
  flex: 0 0 auto;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: #f3f4f6;
  color: #1f2937;
  font-family: "Libertinus Math", serif;
  font-size: 1.25rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
