:root {
  --cyan: #009bd3;
  --cyan-dark: #0074a7;
  --magenta: #d83a7a;
  --yellow: #f6c935;
  --gray: #74777d;
  --gray-soft: #eef1f4;
  --ink: #20242b;
  --muted: #626972;
  --paper: #ffffff;
  --line: #dfe4e8;
  --shadow: 0 22px 60px rgba(25, 34, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  background: #f7f9fb;
  overflow-wrap: break-word;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(calc(var(--card-shift) + 24px)) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(var(--card-shift)) scale(1);
  }
}

@keyframes productCardFloat {
  0%,
  100% {
    transform: translateY(var(--card-shift));
  }

  50% {
    transform: translateY(calc(var(--card-shift) - 8px));
  }
}

@keyframes processHeadingWipe {
  from {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes processStepIn {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

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

@keyframes processLineSweep {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes processBadgeIn {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }

  70% {
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes processBackgroundFlow {
  from {
    transform: translate3d(-7%, 0, 0);
  }

  to {
    transform: translate3d(7%, 0, 0);
  }
}

@keyframes quotePanelIn {
  from {
    opacity: 0;
    transform: translateX(var(--quote-offset));
  }

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

@keyframes solutionGlowDrift {
  from {
    transform: translate3d(-10px, 0, 0) scale(0.98);
  }

  to {
    transform: translate3d(10px, 0, 0) scale(1.02);
  }
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(116, 119, 125, 0.16);
  backdrop-filter: blur(18px);
}

.top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 24px;
  color: var(--paper);
  font-size: 0.86rem;
  background: var(--ink);
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: var(--yellow);
  font-weight: 700;
}

.navbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: 74px;
  object-fit: contain;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-item {
  position: relative;
}

.main-menu a {
  color: var(--muted);
  transition: color 160ms ease;
}

.main-menu a:hover,
.main-menu a:focus-visible,
.main-menu a[aria-current="page"] {
  color: var(--cyan-dark);
}

.has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.has-submenu > a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  text-transform: none;
  transform: translate(-50%, 10px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.submenu a {
  padding: 12px 14px;
  border-radius: 8px;
  color: var(--ink);
}

.submenu a:hover,
.submenu a:focus-visible,
.submenu a[aria-current="page"] {
  color: var(--cyan-dark);
  background: #f1f7fb;
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-action,
.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  translate: 0 0;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    translate 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-action::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.36) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-115%);
  transition:
    opacity 240ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-action:hover,
.nav-action:focus-visible,
.button:hover,
.button:focus-visible {
  translate: 0 -3px;
}

.nav-action:hover::before,
.nav-action:focus-visible::before,
.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.nav-action {
  color: var(--paper);
  background: var(--ink);
}

.nav-action:hover,
.nav-action:focus-visible {
  background: #2a3038;
  box-shadow: 0 16px 34px rgba(25, 34, 45, 0.2);
}

.button.primary {
  color: var(--paper);
  background: var(--magenta);
  box-shadow: 0 12px 30px rgba(216, 58, 122, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #e04483;
  box-shadow:
    0 18px 38px rgba(216, 58, 122, 0.32),
    0 8px 18px rgba(216, 58, 122, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.button.secondary::before {
  background: linear-gradient(115deg, transparent 0 34%, rgba(0, 155, 211, 0.12) 48%, transparent 62%);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--cyan-dark);
  border-color: rgba(0, 155, 211, 0.42);
  box-shadow:
    0 16px 34px rgba(25, 34, 45, 0.11),
    0 5px 12px rgba(0, 155, 211, 0.08);
}

.nav-action:focus-visible,
.button:focus-visible,
.service-nav-grid a:focus-visible,
.portfolio-button:focus-visible,
.map-button:focus-visible {
  outline: 3px solid rgba(0, 155, 211, 0.22);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 125px);
  margin: 0 auto;
  padding: 72px 0 56px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.quote-copy h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.02;
}

.hero-content h1 {
  max-width: 680px;
  font-size: 4.1rem;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-copy,
.hero-actions,
.hero-metrics {
  will-change: opacity, transform;
}

.hero-section.reveal-ready .hero-content .eyebrow,
.hero-section.reveal-ready .hero-content h1,
.hero-section.reveal-ready .hero-copy,
.hero-section.reveal-ready .hero-actions,
.hero-section.reveal-ready .hero-metrics {
  opacity: 0;
  transform: translateY(18px);
}

.hero-section.reveal-ready.is-visible .hero-content .eyebrow,
.hero-section.reveal-ready.is-visible .hero-content h1,
.hero-section.reveal-ready.is-visible .hero-copy,
.hero-section.reveal-ready.is-visible .hero-actions,
.hero-section.reveal-ready.is-visible .hero-metrics {
  animation: fadeSlideUp 720ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-section.reveal-ready.is-visible .hero-content .eyebrow {
  animation-delay: 80ms;
}

.hero-section.reveal-ready.is-visible .hero-content h1 {
  animation-delay: 180ms;
}

.hero-section.reveal-ready.is-visible .hero-copy {
  animation-delay: 300ms;
}

.hero-section.reveal-ready.is-visible .hero-actions {
  animation-delay: 420ms;
}

.hero-section.reveal-ready.is-visible .hero-metrics {
  animation-delay: 540ms;
}

.hero-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 42px 0 0;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 3px solid var(--line);
}

.hero-metrics div:nth-child(1) {
  border-color: var(--cyan);
}

.hero-metrics div:nth-child(2) {
  border-color: var(--magenta);
}

.hero-metrics div:nth-child(3) {
  border-color: var(--yellow);
}

.hero-metrics dt {
  font-size: 1.75rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 0.88fr 0.92fr;
  gap: 22px;
  align-items: stretch;
  min-height: 560px;
  padding: 20px 0;
}

.product-card {
  --card-shift: 0px;
  --card-delay: 620ms;
  --float-delay: 1580ms;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow:
    0 28px 60px rgba(25, 34, 45, 0.18),
    0 14px 24px rgba(25, 34, 45, 0.12);
  opacity: 1;
  transform: translateY(var(--card-shift));
  will-change: opacity, transform;
}

.hero-section.reveal-ready .product-card {
  opacity: 0;
  transform: translateY(calc(var(--card-shift) + 24px)) scale(0.985);
}

.hero-section.reveal-ready.is-visible .product-card {
  animation:
    cardFadeIn 820ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--card-delay) 1 forwards,
    productCardFloat 6.2s ease-in-out var(--float-delay) infinite;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 42%, rgba(255, 255, 255, 0.9) 72%, #ffffff 100%);
}

.product-card:nth-child(2) {
  --card-shift: 38px;
  --card-delay: 780ms;
  --float-delay: 1780ms;
}

.product-card:nth-child(3) {
  --card-shift: 78px;
  --card-delay: 940ms;
  --float-delay: 1980ms;
}

.product-card-blue {
  background: #eaf5fb;
}

.product-card-blue::after {
  background: linear-gradient(180deg, rgba(234, 245, 251, 0.05) 0 42%, rgba(234, 245, 251, 0.9) 72%, #eaf5fb 100%);
}

.product-card-yellow {
  background: #fff7d9;
}

.product-card-yellow::after {
  background: linear-gradient(180deg, rgba(255, 247, 217, 0.08) 0 42%, rgba(255, 247, 217, 0.92) 72%, #fff7d9 100%);
}

.product-card-magenta {
  background: #fdebf2;
}

.product-card-magenta::after {
  background: linear-gradient(180deg, rgba(253, 235, 242, 0.06) 0 42%, rgba(253, 235, 242, 0.92) 72%, #fdebf2 100%);
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--ink);
}

.product-card h2 {
  position: relative;
  z-index: 2;
  max-width: 210px;
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.1;
}

.product-card p {
  position: relative;
  z-index: 2;
  max-width: 230px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.mockup {
  position: absolute;
  inset: 86px 22px 164px;
  display: none;
}

.mockup-cards span {
  position: absolute;
  display: block;
  width: 132px;
  height: 86px;
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(32, 36, 43, 0.14);
}

.mockup-cards span:nth-child(1) {
  top: 52px;
  left: 28px;
  background: var(--paper);
  transform: rotate(-10deg);
}

.mockup-cards span:nth-child(2) {
  top: 98px;
  left: 74px;
  background: linear-gradient(135deg, var(--cyan) 0 34%, var(--paper) 34% 62%, var(--magenta) 62% 100%);
  transform: rotate(6deg);
}

.mockup-cards span:nth-child(3) {
  top: 174px;
  left: 18px;
  background: linear-gradient(135deg, var(--ink) 0 48%, var(--yellow) 48% 100%);
  transform: rotate(-4deg);
}

.mockup-label {
  display: grid;
  place-items: center;
}

.mockup-label::before {
  content: "";
  width: 118px;
  height: 214px;
  border-radius: 48px 48px 26px 26px;
  background: linear-gradient(180deg, var(--ink), #3d434b);
  box-shadow: 0 24px 36px rgba(32, 36, 43, 0.22);
}

.mockup-label span {
  position: absolute;
  width: 94px;
  height: 94px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--cyan) 0 22%, transparent 22%),
    linear-gradient(180deg, var(--yellow) 0 34%, var(--magenta) 34% 70%, var(--paper) 70%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.mockup-bag {
  display: grid;
  place-items: center;
}

.mockup-bag::before {
  content: "";
  position: absolute;
  top: 16px;
  width: 72px;
  height: 72px;
  border: 4px solid #e8b6cb;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.mockup-bag span {
  width: 156px;
  height: 206px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #f06499, var(--magenta));
  box-shadow: 0 24px 38px rgba(216, 58, 122, 0.24);
}

.mockup-bag span::after {
  content: "in print";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 88px;
  color: var(--paper);
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, -50%);
}

.product-card .mockup {
  display: none;
}

.process-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 14px;
  padding: 84px 0;
  background: #1f8ee8;
}

.process-band::before {
  content: "";
  position: absolute;
  inset: -24% -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(246, 201, 53, 0.16), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(
      104deg,
      var(--cyan) 0 38%,
      var(--cyan-dark) 38% 42%,
      #1f8ee8 42% 72%,
      rgba(216, 58, 122, 0.16) 72% 78%,
      #1f8ee8 78% 100%
    );
  animation: processBackgroundFlow 28s ease-in-out infinite alternate;
  will-change: transform;
}

.process-band .section-heading {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 36px;
  text-align: center;
}

.process-band.reveal-ready .section-heading .eyebrow,
.process-band.reveal-ready .section-heading h2 {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-18px);
}

.process-band.reveal-ready.is-visible .section-heading .eyebrow,
.process-band.reveal-ready.is-visible .section-heading h2 {
  animation: processHeadingWipe 820ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, clip-path, transform;
}

.process-band.reveal-ready.is-visible .section-heading h2 {
  animation-delay: 120ms;
}

.process-band .eyebrow,
.section-heading-light .eyebrow {
  color: var(--yellow);
}

.process-band h2,
.section-heading-light h2 {
  color: var(--paper);
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.process-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan) 0 25%, var(--magenta) 25% 50%, var(--yellow) 50% 75%, var(--gray) 75%);
  transform-origin: left center;
}

.process-list li {
  position: relative;
  z-index: 1;
  min-height: 178px;
  padding: 28px;
  background: var(--paper);
}

.process-band.reveal-ready .process-list::before {
  transform: scaleX(0);
}

.process-band.reveal-ready .process-list li {
  opacity: 0;
  transform: translateX(-24px);
}

.process-band.reveal-ready .process-list span {
  opacity: 0;
  transform: scale(0.78);
}

.process-band.reveal-ready.is-visible .process-list::before {
  animation: processLineSweep 920ms cubic-bezier(0.2, 0.8, 0.2, 1) 340ms forwards;
}

.process-band.reveal-ready.is-visible .process-list li {
  animation: processStepIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(360ms + (var(--step-index) * 130ms));
  will-change: opacity, transform;
}

.process-band.reveal-ready.is-visible .process-list span {
  animation: processBadgeIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(560ms + (var(--step-index) * 130ms));
  will-change: opacity, transform;
}

.process-list li:nth-child(1) {
  --step-index: 0;
}

.process-list li:nth-child(2) {
  --step-index: 1;
}

.process-list li:nth-child(3) {
  --step-index: 2;
}

.process-list li:nth-child(4) {
  --step-index: 3;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--cyan);
}

.process-list li:nth-child(2) span {
  background: var(--magenta);
}

.process-list li:nth-child(3) span {
  color: var(--ink);
  background: var(--yellow);
}

.process-list li:nth-child(4) span {
  background: var(--gray);
}

.process-list strong {
  display: block;
  font-size: 1rem;
}

.process-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.solutions-section,
.quote-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.quote-copy h2 {
  font-size: 2.8rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.solutions-section.reveal-ready .section-heading .eyebrow,
.solutions-section.reveal-ready .section-heading h2,
.solutions-section.reveal-ready .solution-card {
  opacity: 0;
  transform: translateY(22px);
}

.solutions-section.reveal-ready.is-visible .section-heading .eyebrow,
.solutions-section.reveal-ready.is-visible .section-heading h2,
.solutions-section.reveal-ready.is-visible .solution-card {
  animation: fadeSlideUp 700ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.solutions-section.reveal-ready.is-visible .section-heading .eyebrow {
  animation-delay: 80ms;
}

.solutions-section.reveal-ready.is-visible .section-heading h2 {
  animation-delay: 180ms;
}

.solutions-section.reveal-ready.is-visible .solution-card {
  animation-delay: calc(280ms + (var(--solution-index) * 110ms));
}

.solution-card {
  --solution-index: 0;
  --solution-glow: rgba(0, 155, 211, 0.18);
  position: relative;
  isolation: isolate;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 18px 36px rgba(25, 34, 45, 0.09),
    0 34px 72px var(--solution-glow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px;
  z-index: -1;
  border-radius: 12px;
  background: radial-gradient(70% 95% at 50% 0, var(--solution-glow), transparent 72%);
  filter: blur(14px);
  opacity: 0.95;
  animation: solutionGlowDrift 8s ease-in-out infinite alternate;
  animation-delay: calc(var(--solution-index) * -1.35s);
  will-change: transform;
}

.solution-card:hover {
  border-color: rgba(0, 116, 167, 0.22);
  box-shadow:
    0 22px 44px rgba(25, 34, 45, 0.11),
    0 42px 82px var(--solution-glow);
}

.solution-card:nth-child(2) {
  --solution-index: 1;
  --solution-glow: rgba(216, 58, 122, 0.18);
}

.solution-card:nth-child(3) {
  --solution-index: 2;
  --solution-glow: rgba(246, 201, 53, 0.2);
}

.solution-card:nth-child(4) {
  --solution-index: 3;
  --solution-glow: rgba(116, 119, 125, 0.18);
}

.solution-card:nth-child(5) {
  --solution-index: 4;
  --solution-glow: rgba(0, 155, 211, 0.18);
}

.accent {
  display: block;
  width: 52px;
  height: 8px;
  margin-bottom: 68px;
  border-radius: 8px;
}

.accent-blue {
  background: var(--cyan);
}

.accent-magenta {
  background: var(--magenta);
}

.accent-yellow {
  background: var(--yellow);
}

.accent-gray {
  background: var(--gray);
}

.solution-card h3,
.portfolio-item h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
}

.solution-card p,
.portfolio-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--cyan-dark);
  font-weight: 900;
}

.portfolio-section {
  padding: 96px 0;
  background: var(--ink);
}

.portfolio-section .section-heading,
.portfolio-grid {
  width: min(980px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: 16px;
  margin-top: 42px;
}

.portfolio-section.reveal-ready .section-heading .eyebrow,
.portfolio-section.reveal-ready .section-heading h2,
.portfolio-section.reveal-ready .portfolio-item {
  opacity: 0;
  transform: translateY(24px);
}

.portfolio-section.reveal-ready.is-visible .section-heading .eyebrow,
.portfolio-section.reveal-ready.is-visible .section-heading h2,
.portfolio-section.reveal-ready.is-visible .portfolio-item {
  animation: fadeSlideUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.portfolio-section.reveal-ready.is-visible .section-heading .eyebrow {
  animation-delay: 80ms;
}

.portfolio-section.reveal-ready.is-visible .section-heading h2 {
  animation-delay: 190ms;
}

.portfolio-section.reveal-ready.is-visible .portfolio-item {
  animation-delay: calc(320ms + (var(--portfolio-index) * 140ms));
}

.portfolio-section.reveal-ready .portfolio-visual img {
  transform: scale(1.06);
}

.portfolio-section.reveal-ready.is-visible .portfolio-visual img {
  transform: scale(1);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.services-hero,
.service-grid-section,
.service-detail-hero,
.service-detail-section,
.service-nav-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: 92px 0 46px;
}

.services-hero > .button {
  justify-self: start;
}

.services-hero h1,
.service-detail-copy h1 {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.02;
}

.services-hero p:not(.eyebrow),
.service-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.service-grid-section {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 96px;
}

.service-tile {
  --service-color: var(--cyan);
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  box-shadow:
    0 18px 42px rgba(25, 34, 45, 0.12),
    0 4px 14px rgba(25, 34, 45, 0.08);
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: var(--service-color);
}

.service-tile span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 92px;
  border-radius: 50%;
  color: var(--paper);
  font-weight: 900;
  background: var(--service-color);
}

.service-tile h2 {
  margin: 0;
  font-size: 1.45rem;
}

.service-tile p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-tile-cyan {
  --service-color: var(--cyan);
}

.service-tile-magenta {
  --service-color: var(--magenta);
}

.service-tile-yellow {
  --service-color: var(--yellow);
}

.service-tile-yellow span {
  color: var(--ink);
}

.service-tile-gray {
  --service-color: var(--gray);
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 82px 0 70px;
}

.service-detail-copy .button {
  margin-top: 32px;
}

.service-detail-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 155, 211, 0.18), rgba(216, 58, 122, 0.14), rgba(246, 201, 53, 0.12));
  pointer-events: none;
}

.service-detail-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-detail-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 76px;
}

.service-detail-section article {
  --service-card-glow: rgba(0, 155, 211, 0.18);
  position: relative;
  isolation: isolate;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 18px 36px rgba(25, 34, 45, 0.09),
    0 34px 72px var(--service-card-glow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-detail-section article::before {
  content: "";
  position: absolute;
  inset: 18px 18px -18px;
  z-index: -1;
  border-radius: 12px;
  background: radial-gradient(70% 95% at 50% 0, var(--service-card-glow), transparent 72%);
  filter: blur(14px);
  opacity: 0.95;
  animation: solutionGlowDrift 8s ease-in-out infinite alternate;
  animation-delay: calc(var(--tile-index) * -1.35s);
  will-change: transform;
}

.service-detail-section article:hover {
  border-color: rgba(0, 116, 167, 0.22);
  box-shadow:
    0 22px 44px rgba(25, 34, 45, 0.11),
    0 42px 82px var(--service-card-glow);
}

.service-detail-section article:nth-child(2) {
  --service-card-glow: rgba(216, 58, 122, 0.18);
}

.service-detail-section article:nth-child(3) {
  --service-card-glow: rgba(246, 201, 53, 0.2);
}

.service-detail-section h2 {
  margin: 0;
  font-size: 1.35rem;
}

.service-detail-section p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-nav-section {
  padding: 0 0 96px;
}

.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.service-nav-grid a {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 900;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(25, 34, 45, 0.04);
  translate: 0 0;
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    color 260ms ease,
    translate 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-nav-grid a::before {
  content: "";
  position: absolute;
  inset: -30% -18%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 155, 211, 0.14), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(216, 58, 122, 0.1), transparent 36%),
    linear-gradient(120deg, rgba(0, 155, 211, 0.08), rgba(246, 201, 53, 0.1));
  opacity: 0;
  transform: translate3d(-12px, 0, 0) scale(1.04);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-nav-grid a:hover,
.service-nav-grid a:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  background-color: #fcfeff;
  box-shadow:
    0 20px 46px rgba(25, 34, 45, 0.13),
    0 7px 16px rgba(0, 155, 211, 0.08);
  translate: 0 -5px;
}

.service-nav-grid a:hover::before,
.service-nav-grid a:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.services-hero.reveal-ready > div,
.services-hero.reveal-ready > .button,
.service-grid-section.reveal-ready .service-tile,
.service-detail-hero.reveal-ready .service-detail-copy,
.service-detail-hero.reveal-ready .service-detail-media,
.service-detail-section.reveal-ready article,
.service-nav-section.reveal-ready .eyebrow,
.service-nav-section.reveal-ready .service-nav-grid a {
  opacity: 0;
  transform: translateY(22px);
}

.services-hero.reveal-ready.is-visible > div,
.services-hero.reveal-ready.is-visible > .button,
.service-grid-section.reveal-ready.is-visible .service-tile,
.service-detail-hero.reveal-ready.is-visible .service-detail-copy,
.service-detail-hero.reveal-ready.is-visible .service-detail-media,
.service-detail-section.reveal-ready.is-visible article,
.service-nav-section.reveal-ready.is-visible .eyebrow,
.service-nav-section.reveal-ready.is-visible .service-nav-grid a {
  animation: fadeSlideUp 740ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.services-hero.reveal-ready.is-visible > .button,
.service-detail-hero.reveal-ready.is-visible .service-detail-media {
  animation-delay: 160ms;
}

.service-grid-section.reveal-ready.is-visible .service-tile,
.service-detail-section.reveal-ready.is-visible article,
.service-nav-section.reveal-ready.is-visible .service-nav-grid a {
  animation-delay: calc(110ms + (var(--tile-index) * 120ms));
}

.service-tile:nth-child(1),
.service-detail-section article:nth-child(1),
.service-nav-grid a:nth-child(1) {
  --tile-index: 0;
}

.service-tile:nth-child(2),
.service-detail-section article:nth-child(2),
.service-nav-grid a:nth-child(2) {
  --tile-index: 1;
}

.service-tile:nth-child(3),
.service-detail-section article:nth-child(3),
.service-nav-grid a:nth-child(3) {
  --tile-index: 2;
}

.service-tile:nth-child(4),
.service-nav-grid a:nth-child(4) {
  --tile-index: 3;
}

.service-tile:nth-child(5),
.service-nav-grid a:nth-child(5) {
  --tile-index: 4;
}

.about-hero,
.about-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: 52px;
  align-items: center;
  padding: 84px 0 70px;
}

.about-copy h1 {
  margin: 0;
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1.02;
}

.about-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 155, 211, 0.12), rgba(216, 58, 122, 0.14), rgba(246, 201, 53, 0.12));
  pointer-events: none;
}

.about-media-video::after {
  display: none;
}

.about-media img,
.about-media video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-content {
  padding: 0 0 96px;
}

.about-lead {
  padding: 34px;
  border-left: 8px solid var(--cyan);
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.about-lead p {
  max-width: 960px;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.8;
}

.about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.about-text-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow:
    0 18px 42px rgba(25, 34, 45, 0.12),
    0 4px 14px rgba(25, 34, 45, 0.08);
}

.about-text-grid h2 {
  margin: 0;
  font-size: 1.35rem;
}

.about-text-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.about-hero.reveal-ready .about-copy,
.about-hero.reveal-ready .about-media,
.about-content.reveal-ready .about-lead,
.about-content.reveal-ready .about-text-grid article {
  opacity: 0;
  transform: translateY(22px);
}

.about-hero.reveal-ready.is-visible .about-copy,
.about-hero.reveal-ready.is-visible .about-media,
.about-content.reveal-ready.is-visible .about-lead,
.about-content.reveal-ready.is-visible .about-text-grid article {
  animation: fadeSlideUp 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.about-hero.reveal-ready.is-visible .about-media,
.about-content.reveal-ready.is-visible .about-lead {
  animation-delay: 160ms;
}

.about-content.reveal-ready.is-visible .about-text-grid article {
  animation-delay: calc(260ms + (var(--about-index) * 110ms));
}

.about-text-grid article:nth-child(1) {
  --about-index: 0;
}

.about-text-grid article:nth-child(2) {
  --about-index: 1;
}

.about-text-grid article:nth-child(3) {
  --about-index: 2;
}

.about-text-grid article:nth-child(4) {
  --about-index: 3;
}

.portfolio-item {
  --portfolio-index: 0;
  --portfolio-accent: var(--cyan-dark);
  --portfolio-button-bg: rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(220px, 0.85fr);
  height: 198px;
  min-height: 198px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.portfolio-item:nth-child(2) {
  --portfolio-index: 1;
}

.portfolio-item:nth-child(3) {
  --portfolio-index: 2;
}

.portfolio-item:nth-child(4) {
  --portfolio-index: 3;
}

.portfolio-item:nth-child(5) {
  --portfolio-index: 4;
}

.portfolio-item:nth-child(6) {
  --portfolio-index: 5;
}

.portfolio-item:nth-child(7) {
  --portfolio-index: 6;
}

.portfolio-item:nth-child(8) {
  --portfolio-index: 7;
}

.portfolio-item:nth-child(9) {
  --portfolio-index: 8;
}

.portfolio-item:nth-child(10) {
  --portfolio-index: 9;
}

.portfolio-item:nth-child(11) {
  --portfolio-index: 10;
}

.portfolio-item:nth-child(12) {
  --portfolio-index: 11;
}

.portfolio-item:nth-child(13) {
  --portfolio-index: 12;
}

.portfolio-item:nth-child(14) {
  --portfolio-index: 13;
}

.portfolio-item.item-cyan {
  --portfolio-accent: #1575bd;
  --portfolio-button-bg: rgba(0, 74, 126, 0.34);
}

.portfolio-item.item-magenta {
  --portfolio-accent: #d60052;
  --portfolio-button-bg: rgba(255, 255, 255, 0.15);
}

.portfolio-item.item-yellow {
  --portfolio-accent: #f6c935;
  --portfolio-button-bg: rgba(32, 36, 43, 0.13);
}

.portfolio-visual {
  position: relative;
  min-height: 198px;
  height: 100%;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--gray-soft);
}

.portfolio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 198px;
  padding: 20px 18px;
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 42%),
    var(--portfolio-accent);
}

.item-yellow .portfolio-copy {
  color: var(--ink);
}

.portfolio-copy h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.04;
  overflow-wrap: normal;
  text-transform: uppercase;
  word-break: normal;
}

.portfolio-copy p {
  margin: 12px 0 0;
  color: inherit;
  font-size: 0.78rem;
  line-height: 1.38;
}

.portfolio-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 36px;
  margin-top: 16px;
  padding: 0 20px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 900;
  background: var(--portfolio-button-bg);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  translate: 0 0;
  transition:
    background 220ms ease,
    box-shadow 260ms ease,
    translate 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.36) 48%, transparent 64%);
  opacity: 0;
  transform: translateX(-115%);
  transition:
    opacity 240ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.item-yellow .portfolio-button {
  color: var(--ink);
}

.portfolio-button:hover,
.portfolio-button:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  translate: 0 -3px;
}

.portfolio-button:hover::before,
.portfolio-button:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.visual-stationery::before,
.visual-stationery::after,
.visual-gift::before,
.visual-gift::after,
.visual-packaging::before,
.visual-packaging::after {
  content: "";
  position: absolute;
  display: block;
}

.visual-stationery::before {
  width: 210px;
  height: 128px;
  left: 42px;
  top: 62px;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 35px rgba(32, 36, 43, 0.14);
}

.visual-stationery::after {
  width: 188px;
  height: 108px;
  right: 42px;
  top: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan) 0 36%, var(--paper) 36% 70%, var(--magenta) 70%);
  box-shadow: 0 18px 35px rgba(32, 36, 43, 0.16);
}

.visual-gift::before {
  left: 50%;
  top: 34px;
  width: 148px;
  height: 166px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f376a7, var(--magenta));
  transform: translateX(-50%);
}

.visual-gift::after {
  left: 50%;
  top: 14px;
  width: 70px;
  height: 70px;
  border: 4px solid #f3b7ce;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
  transform: translateX(-50%);
}

.visual-packaging::before {
  left: 58px;
  top: 36px;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--yellow) 0 54%, var(--paper) 54%);
  box-shadow: 0 18px 35px rgba(32, 36, 43, 0.14);
  transform: rotate(-4deg);
}

.visual-packaging::after {
  right: 58px;
  top: 66px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--paper), var(--cyan) 42%, var(--cyan-dark));
  box-shadow: 0 18px 35px rgba(32, 36, 43, 0.16);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 54px;
  align-items: start;
}

.quote-section.reveal-ready .quote-copy,
.quote-section.reveal-ready .quote-form {
  opacity: 0;
}

.quote-section.reveal-ready .quote-copy {
  --quote-offset: -28px;
  transform: translateX(var(--quote-offset));
}

.quote-section.reveal-ready .quote-form {
  --quote-offset: 28px;
  transform: translateX(var(--quote-offset));
}

.quote-section.reveal-ready.is-visible .quote-copy,
.quote-section.reveal-ready.is-visible .quote-form {
  animation: quotePanelIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.quote-section.reveal-ready.is-visible .quote-form {
  animation-delay: 180ms;
}

.quote-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #f9fbfd;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 155, 211, 0.12);
}

.quote-form textarea {
  resize: vertical;
}

.full-field,
.form-submit,
.form-feedback {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
  color: var(--cyan-dark);
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  scroll-margin-top: 140px;
  color: var(--paper);
  background: var(--ink);
}

.site-footer.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
}

.site-footer.reveal-ready.is-visible {
  animation: fadeSlideUp 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.footer-unit {
  padding: 56px max(20px, calc((100% - 1180px) / 2));
}

.footer-unit-blue {
  background: #075b88;
}

.footer-unit-yellow {
  color: var(--ink);
  background: #f8d82f;
}

.footer-unit-gray {
  color: #15191f;
  background: #8b8f94;
}

.footer-inner {
  display: grid;
  grid-template-columns: 180px minmax(240px, 1fr) minmax(260px, 0.95fr);
  gap: 56px;
  align-items: start;
}

.footer-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 168px;
  min-height: 168px;
  padding: 18px;
  border-radius: 24px 24px 0 24px;
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(18, 24, 32, 0.16);
}

.footer-logo-card img {
  width: 132px;
  height: 118px;
  object-fit: contain;
}

.footer-logo-wise span {
  position: absolute;
  right: 26px;
  bottom: 20px;
  color: var(--gray);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: lowercase;
}

.footer-kicker {
  margin: 0 0 32px;
  font-size: 1.22rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-location h2,
.footer-contact h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: none;
}

.footer-location h2 {
  text-transform: uppercase;
}

.footer-location address,
.footer-contact p {
  margin: 0 0 22px;
  font-style: normal;
  line-height: 1.45;
}

.footer-contact a,
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  text-decoration: underline;
}

.map-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 20px;
  padding: 7px 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: var(--paper);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: #05070a;
  box-shadow: 0 8px 16px rgba(10, 12, 14, 0.26);
  translate: 0 0;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    translate 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 32%, rgba(255, 255, 255, 0.34) 48%, transparent 64%);
  opacity: 0;
  transform: translateX(-115%);
  transition:
    opacity 240ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-button:hover,
.map-button:focus-visible {
  color: var(--paper);
  background: var(--magenta);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 14px 28px rgba(10, 12, 14, 0.34),
    0 6px 14px rgba(216, 58, 122, 0.2);
  text-decoration: none;
  translate: 0 -3px;
}

.map-button:hover::before,
.map-button:focus-visible::before {
  opacity: 1;
  transform: translateX(115%);
}

.footer-note {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.footer-note strong {
  color: var(--paper);
  font-size: 1.06rem;
  text-transform: uppercase;
}

.footer-note span {
  color: var(--paper);
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 10px 20px rgba(10, 12, 14, 0.16);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    background 160ms ease;
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link.social-whatsapp {
  color: #14b85a;
}

.social-link.social-instagram {
  color: var(--magenta);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(10, 12, 14, 0.24);
}

.social-link.social-whatsapp:hover,
.social-link.social-whatsapp:focus-visible {
  background: #14b85a;
}

.social-link.social-instagram:hover,
.social-link.social-instagram:focus-visible {
  background: linear-gradient(135deg, #833ab4, #d83a7a 48%, #f6c935);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px max(20px, calc((100% - 1180px) / 2));
  color: #eef2f6;
  font-size: 0.84rem;
  background: #767b81;
}

.footer-bottom small {
  color: #eef2f6;
}

@media (max-width: 1080px) {
  .navbar {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-menu {
    position: absolute;
    top: 125px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: flex;
  }

  .menu-item,
  .has-submenu > a {
    width: 100%;
  }

  .submenu {
    position: static;
    min-width: 100%;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none;
  }

  .has-submenu:hover .submenu,
  .has-submenu:focus-within .submenu {
    transform: none;
  }

  .nav-action {
    justify-self: end;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: auto;
  }

  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    --card-shift: 0px;
    min-height: 430px;
  }

  .solution-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .services-hero,
  .service-detail-hero,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .service-grid-section,
  .service-detail-section,
  .service-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-media img {
    height: 420px;
  }

  .about-media img,
  .about-media video {
    height: 420px;
  }

  .footer-inner {
    grid-template-columns: 150px minmax(220px, 1fr) minmax(240px, 1fr);
    gap: 34px;
  }

  .footer-logo-card {
    width: 140px;
    min-height: 140px;
  }

  .footer-logo-card img {
    width: 108px;
    height: 96px;
  }
}

@media (max-width: 760px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .navbar {
    grid-template-columns: auto auto;
    width: min(100% - 28px, 1180px);
    min-height: 76px;
  }

  .brand img {
    width: 120px;
    height: 66px;
  }

  .nav-action {
    display: none;
  }

  .main-menu {
    top: 132px;
  }

  .hero-section,
  .solutions-section,
  .quote-section,
  .portfolio-section .section-heading,
  .portfolio-grid,
  .services-hero,
  .service-grid-section,
  .service-detail-hero,
  .service-detail-section,
  .service-nav-section,
  .about-hero,
  .about-content {
    width: min(100% - 28px, 1180px);
  }

  .hero-section {
    padding-top: 46px;
  }

  .hero-content h1 {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .quote-copy h2,
  .services-hero h1,
  .service-detail-copy h1,
  .about-copy h1 {
    font-size: 2rem;
  }

  .hero-metrics,
  .hero-showcase,
  .solution-grid,
  .portfolio-grid,
  .process-list,
  .quote-form,
  .service-grid-section,
  .service-detail-section,
  .service-nav-grid,
  .about-text-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    gap: 14px;
  }

  .product-card,
  .product-card:nth-child(2),
  .product-card:nth-child(3) {
    min-height: 340px;
  }

  .mockup {
    inset: 76px 22px 124px;
  }

  .process-band,
  .portfolio-section,
  .solutions-section,
  .quote-section,
  .services-hero,
  .service-grid-section,
  .service-detail-hero,
  .service-detail-section,
  .service-nav-section,
  .about-hero,
  .about-content {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .service-tile {
    min-height: 270px;
  }

  .portfolio-item {
    grid-template-columns: 1fr;
    height: auto;
  }

  .portfolio-visual {
    height: 180px;
    min-height: 180px;
  }

  .portfolio-copy {
    min-height: auto;
  }

  .service-tile span {
    margin-bottom: 64px;
  }

  .service-detail-media img {
    height: 330px;
  }

  .about-media img,
  .about-media video {
    height: 320px;
  }

  .about-lead,
  .about-text-grid article {
    padding: 24px;
  }

  .quote-form {
    padding: 22px;
  }

  .footer-unit {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-logo-card {
    width: 132px;
    min-height: 132px;
  }

  .footer-kicker {
    margin-bottom: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  .button,
  .nav-action {
    width: 100%;
  }

  .hero-content h1 {
    font-size: 2.18rem;
  }

  .hero-copy,
  .quote-copy p:not(.eyebrow) {
    font-size: 1rem;
  }

  .product-card h2,
  .solution-card h3,
  .portfolio-item h3 {
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-content .eyebrow,
  .hero-content h1,
  .hero-copy,
  .hero-actions,
  .hero-metrics,
  .product-card,
  .process-band.reveal-ready .section-heading .eyebrow,
  .process-band.reveal-ready .section-heading h2,
  .process-band.reveal-ready .process-list li,
  .process-band.reveal-ready .process-list span,
  .solutions-section.reveal-ready .section-heading .eyebrow,
  .solutions-section.reveal-ready .section-heading h2,
  .solutions-section.reveal-ready .solution-card,
  .portfolio-section.reveal-ready .section-heading .eyebrow,
  .portfolio-section.reveal-ready .section-heading h2,
  .portfolio-section.reveal-ready .portfolio-item,
  .quote-section.reveal-ready .quote-copy,
  .quote-section.reveal-ready .quote-form,
  .services-hero.reveal-ready > div,
  .services-hero.reveal-ready > .button,
  .service-grid-section.reveal-ready .service-tile,
  .service-detail-hero.reveal-ready .service-detail-copy,
  .service-detail-hero.reveal-ready .service-detail-media,
  .service-detail-section.reveal-ready article,
  .service-nav-section.reveal-ready .eyebrow,
  .service-nav-section.reveal-ready .service-nav-grid a,
  .about-hero.reveal-ready .about-copy,
  .about-hero.reveal-ready .about-media,
  .about-content.reveal-ready .about-lead,
  .about-content.reveal-ready .about-text-grid article,
  .site-footer.reveal-ready {
    opacity: 1;
    animation: none;
    clip-path: inset(0 0 0 0);
    transform: none;
    will-change: auto;
  }

  .product-card {
    transform: translateY(var(--card-shift));
  }

  .process-band.reveal-ready .process-list::before {
    animation: none;
    transform: scaleX(1);
  }

  .process-band::before {
    animation: none;
    transform: translate3d(0, 0, 0);
    will-change: auto;
  }

  .solution-card::before,
  .service-detail-section article::before {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .service-nav-grid a,
  .service-nav-grid a::before {
    transition: none;
  }

  .nav-action,
  .button,
  .portfolio-button,
  .map-button,
  .service-nav-grid a {
    transition: none;
    translate: 0 0;
  }

  .nav-action:hover,
  .nav-action:focus-visible,
  .button:hover,
  .button:focus-visible,
  .portfolio-button:hover,
  .portfolio-button:focus-visible,
  .map-button:hover,
  .map-button:focus-visible,
  .service-nav-grid a:hover,
  .service-nav-grid a:focus-visible {
    translate: 0 0;
  }

  .nav-action::before,
  .button::before,
  .portfolio-button::before,
  .map-button::before {
    display: none;
  }

  .portfolio-section.reveal-ready .portfolio-visual img {
    transform: scale(1);
    transition: none;
  }
}
