:root {
  --navy: #0b1f3a;
  --navy-deep: #071526;
  --navy-soft: #132a4a;
  --gold: #c49a6c;
  --gold-dark: #a87f52;
  --text: #1c2430;
  --muted: #5c6675;
  --line: #e4e8ee;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --container: 1440px;
  --header-h: 88px;
  --font-sans: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: #f3f5f8;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.7rem 1.35rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn span[aria-hidden="true"] {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover span[aria-hidden="true"] {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--navy-soft);
}

.btn--ghost {
  background: #fff;
  border-color: #cfd6e0;
  color: var(--navy);
}

.btn--ghost:hover {
  border-color: var(--navy);
}

.btn--outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--navy);
  min-height: 42px;
  padding-inline: 1.1rem;
}

.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}

.btn--gold {
  background: var(--gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--gold-dark);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.utility-bar {
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
}

.utility-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.25rem;
  min-height: 36px;
  font-size: 0.75rem;
  color: var(--muted);
}

.utility-bar a:hover,
.lang-btn:hover {
  color: var(--navy);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 0;
}

.lang-btn svg {
  width: 14px;
  height: 14px;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  flex-shrink: 0;
  z-index: 2;
}

.brand img {
  width: 148px;
  height: auto;
  object-fit: contain;
}

.brand--footer img {
  width: 160px;
  background: #fff;
  border-radius: 4px;
  padding: 0.35rem 0.5rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  gap: 0.15rem 1.15rem;
}

.main-nav a {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-cta-mobile {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 2;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 11px 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(640px, 88vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 18% 70%, rgba(79, 143, 191, 0.12), transparent 70%),
    linear-gradient(118deg, #f7f9fc 0%, #eef2f7 38%, #dfe7f1 100%);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.hero__watermark {
  position: absolute;
  left: 4%;
  top: 6%;
  width: min(48vw, 520px);
  height: auto !important;
  opacity: 0.08;
  object-fit: contain !important;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 3.5rem;
  max-width: min(640px, calc(100% - 2rem));
  margin-left: max(1rem, calc((100% - var(--container)) / 2));
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.55rem, 4.6vw, 3.85rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 700;
}

.hero__lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero__trust {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.hero__trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.15rem 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.trust-icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.section-head h2,
.digital__copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.service-card h3,
.platform-card h3,
.site-footer h3,
.stat-item strong {
  font-weight: 700;
}

/* Services */
.services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(79, 143, 191, 0.14), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(11, 31, 58, 0.08), transparent 32%),
    linear-gradient(180deg, #f3f7fb 0%, #f1f4f8 48%, #eef2f7 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(11, 31, 58, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 35%, transparent 85%);
}

.services::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -80px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(79, 143, 191, 0.22);
  box-shadow: inset 0 0 0 40px rgba(79, 143, 191, 0.04);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.75rem;
}

.service-card {
  padding: 1.5rem 1.25rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(196, 154, 108, 0.35);
  background: #f5f9fc;
  transform: translateY(-2px);
}

.service-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.service-card p {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card a {
  color: var(--gold-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-card a:hover {
  color: var(--navy);
}

/* Digital */
.digital {
  padding: 5.5rem 0;
  background:
    radial-gradient(700px 320px at 85% 20%, rgba(79, 143, 191, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
}

.digital__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
}

.digital__copy h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.digital__copy p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  margin: 0 0 1.6rem;
}

.digital__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.platform-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 154, 108, 0.55);
}

.platform-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 240px;
  background: rgba(0, 0, 0, 0.2);
}

.platform-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.platform-card__body {
  padding: 1.15rem 1.1rem 1.25rem;
}

.platform-card h3 {
  margin: 0;
  color: var(--gold);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.platform-card__tag {
  margin: 0.2rem 0 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
}

.platform-card p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.platform-card a {
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
}

/* Experience */
.experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(79, 143, 191, 0.16), transparent 60%),
    linear-gradient(180deg, #e2eaf3 0%, #eef3f8 42%, #e8edf4 100%);
}

.experience .section-head {
  max-width: none;
}

.experience .section-head h2 {
  white-space: nowrap;
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
}

.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 14px,
      rgba(11, 31, 58, 0.03) 14px,
      rgba(11, 31, 58, 0.03) 15px
    );
}

.experience::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -70px;
  bottom: -90px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.1), transparent 68%);
}

.industries {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(79, 143, 191, 0.12), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(11, 31, 58, 0.07), transparent 34%),
    linear-gradient(165deg, #f7f8fb 0%, #eef1f6 55%, #e7ecf3 100%);
}

.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.55;
  background-image: radial-gradient(rgba(11, 31, 58, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.stat-item {
  text-align: center;
  padding: 0.5rem;
}

.stat-item__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.stat-item__icon svg {
  width: 100%;
  height: 100%;
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.45rem;
}

.stat-item span:last-child {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Industries */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 280px;
  background: var(--navy);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.industry-card:hover img {
  transform: scale(1.05);
}

.industry-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.92) 35%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.industry-card__icon {
  color: var(--gold);
  font-size: 0.7rem;
}

.industry-card--more {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 35%, rgba(79, 143, 191, 0.18), transparent 55%),
    var(--navy);
}

.industry-card__more {
  text-align: center;
  color: #fff;
}

.industry-card__more span {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.industry-card__more p {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 4.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1.75rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0 1.25rem;
  font-size: 0.9rem;
  max-width: 28rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 0.55rem;
}

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

.socials {
  display: flex;
  gap: 0.55rem;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.contact-list a {
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  font-size: 0.82rem;
  padding: 0.75rem 0;
}

.footer-copy {
  margin: 0;
  justify-self: start;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  white-space: nowrap;
}

.footer-bottom p {
  margin: 0;
}

.footer-dev {
  justify-self: end;
  text-align: right;
  color: rgba(255, 255, 255, 0.55);
}

.footer-dev a {
  color: var(--gold);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-dev a:hover {
  color: #e0c29a;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero__media > img:first-child {
    animation: hero-zoom 18s ease-out both;
  }

  .hero__content > * {
    opacity: 0;
    animation: rise 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero__content > *:nth-child(1) { animation-delay: 0.05s; }
  .hero__content > *:nth-child(2) { animation-delay: 0.16s; }
  .hero__content > *:nth-child(3) { animation-delay: 0.28s; }
  .hero__content > *:nth-child(4) { animation-delay: 0.4s; }

  .hero__trust {
    animation: rise 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--delay, 0s);
  }

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

  .service-card,
  .platform-card,
  .industry-card,
  .stat-item,
  .trust-item {
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover,
  .platform-card:hover {
    box-shadow: 0 14px 34px rgba(11, 31, 58, 0.12);
  }

  .trust-item:hover,
  .stat-item:hover {
    transform: translateY(-3px);
  }

  .industry-card:hover {
    box-shadow: 0 16px 28px rgba(11, 31, 58, 0.18);
  }

  .btn--primary:hover,
  .btn--gold:hover {
    box-shadow: 0 10px 24px rgba(11, 31, 58, 0.18);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  :root {
    --header-h: 72px;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-cta-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(86vw, 340px);
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + 36px + 1rem) 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: none;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -18px 0 40px rgba(11, 31, 58, 0.16);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a:not(.btn) {
    display: block;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .main-nav a:not(.btn)::after {
    display: none;
  }

  .nav-cta-mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 1.25rem;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(7, 21, 38, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

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

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

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

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .platform-card__media {
    max-height: 200px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .utility-bar__inner {
    gap: 0.85rem;
    font-size: 0.7rem;
    min-height: 32px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .digital {
    padding: 3.5rem 0;
  }

  .section-head {
    margin-bottom: 2rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 3.75rem 0 2rem;
    max-width: min(100% - 1.5rem, var(--container));
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__media img:first-child {
    object-position: 72% center;
    opacity: 0.4;
  }

  .hero__watermark {
    opacity: 0.04;
    width: min(70vw, 280px);
  }

  .hero__trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1rem;
    padding: 1rem 0;
  }

  .trust-item {
    font-size: 0.8rem;
  }

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

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

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

  .industry-card {
    min-height: 220px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .stat-item:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .footer-copy,
  .footer-dev,
  .footer-legal {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 64px;
  }

  .utility-bar {
    display: none;
  }

  .main-nav {
    padding-top: calc(var(--header-h) + 1rem);
    width: min(92vw, 320px);
  }

  .brand img {
    width: 112px;
  }

  .services-grid,
  .hero__trust-grid,
  .industries-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item:last-child {
    grid-column: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav-actions .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .experience .section-head h2 {
    white-space: normal;
  }

  .service-card {
    padding: 1.15rem 0.85rem 1.1rem;
  }

  .industry-card {
    min-height: 250px;
  }

  .platform-card__media {
    max-height: 180px;
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    gap: 1.75rem 1rem;
  }
}
