:root {
  --brand: #f36c21;
  --brand-deep: #d95010;
  --ink: #1b1c1e;
  --muted: #676a70;
  --line: #e8e9eb;
  --surface: #f7f7f6;
  --white: #ffffff;
  --dark: #17181a;
  --container: 1180px;
  --shadow: 0 24px 70px rgba(23, 24, 26, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.93);
  border-color: rgba(23, 24, 26, 0.08);
  box-shadow: 0 10px 30px rgba(23, 24, 26, 0.06);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 205px;
  flex: 0 0 auto;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  transition: color 0.2s ease;
}

.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--brand-deep);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 18px !important;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
}

.nav-contact:hover {
  background: var(--brand);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 42%, rgba(243, 108, 33, 0.16), transparent 32%),
    linear-gradient(135deg, #fff 0%, #faf9f7 50%, #f4f1ec 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(23, 24, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 26, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 84%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44%;
  height: 7px;
  background: var(--brand);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  width: 460px;
  height: 460px;
  right: -230px;
  top: -180px;
  border: 1px solid rgba(243, 108, 33, 0.32);
}

.hero-orb-two {
  width: 250px;
  height: 250px;
  left: -140px;
  bottom: 70px;
  border: 1px solid rgba(23, 24, 26, 0.12);
}

.hero-layout {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 70px;
  padding-top: 92px;
}

.hero-copy {
  max-width: 770px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 36px;
  height: 2px;
  background: var(--brand);
}

.hero h1 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(52px, 6.2vw, 90px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.hero h1 small {
  display: block;
  margin-top: 18px;
  color: #4f5155;
  font-size: 0.49em;
  font-weight: 570;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.hero-tagline {
  margin: 30px 0 0;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(243, 108, 33, 0.25);
}

.button-primary:hover {
  background: var(--brand-deep);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(23, 24, 26, 0.14);
}

.button-secondary:hover {
  border-color: var(--ink);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: relative;
  width: min(38vw, 470px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.1) 34%),
    linear-gradient(145deg, rgba(243, 108, 33, 0.95), rgba(243, 108, 33, 0.18));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 42px 100px rgba(243, 108, 33, 0.22);
}

.visual-frame::before,
.visual-frame::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.visual-frame::before {
  inset: 12%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 60px rgba(23, 24, 26, 0.06);
}

.visual-frame::after {
  inset: -8%;
  border: 1px solid rgba(23, 24, 26, 0.08);
}

.visual-ring {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(243, 108, 33, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 68%;
  height: 68%;
}

.ring-two {
  width: 45%;
  height: 45%;
}

.ring-three {
  width: 88%;
  height: 26%;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.visual-core {
  position: absolute;
  z-index: 4;
  inset: 50% auto auto 50%;
  width: 32%;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(23, 24, 26, 0.28);
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.visual-core::after {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--brand);
}

.visual-n,
.visual-c {
  position: relative;
  z-index: 2;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 900;
}

.visual-dot {
  position: absolute;
  z-index: 5;
  width: 15px;
  height: 15px;
  background: var(--ink);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(23, 24, 26, 0.18);
}

.dot-one { top: 9%; left: 45%; }
.dot-two { right: 5%; bottom: 29%; }
.dot-three { left: 12%; bottom: 15%; background: var(--brand); }

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(23, 24, 26, 0.25);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: var(--brand);
  border-radius: 999px;
  transform: translateX(-50%);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  55% { transform: translate(-50%, 14px); opacity: 0.15; }
}

.why-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--white);
}

.why-section::before {
  content: "";
  position: absolute;
  top: -190px;
  left: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(243, 108, 33, 0.14);
  border-radius: 50%;
}

.why-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 85px;
}

.section-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-description {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.accent-line {
  width: 86px;
  height: 5px;
  margin-top: 34px;
  background: var(--brand);
  border-radius: 999px;
}

.market-card {
  position: relative;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.market-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 48%;
  height: 48%;
  background: rgba(243, 108, 33, 0.09);
  border-radius: 32px;
}

.market-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 5px 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.market-card-dot {
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(243, 108, 33, 0.11);
}

.market-image-wrap {
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
}

.market-image-wrap img {
  width: 100%;
  height: auto;
}

.about-section {
  padding: 140px 0;
  background: var(--surface);
}

.about-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  padding-bottom: 86px;
  border-bottom: 1px solid #dcdddf;
}

.about-intro h2,
.values-heading h2,
.services-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.about-copy {
  max-width: 740px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.85;
}

.about-copy p {
  margin: 0;
}

.about-copy p + p {
  margin-top: 22px;
}

.values-heading {
  max-width: 680px;
  margin-top: 86px;
}

.values-heading > p:last-child {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.value-card {
  grid-column: span 2;
  min-height: 270px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.value-card:nth-child(4),
.value-card:nth-child(5) {
  grid-column: span 3;
}

.value-card-featured {
  color: var(--white);
  background: var(--brand);
  border-color: var(--brand);
}

.value-card h3,
.service-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.value-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.value-card-featured p {
  color: rgba(255, 255, 255, 0.82);
}

.services-section {
  padding: 140px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 108, 33, 0.22), transparent 26%),
    var(--dark);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: end;
  gap: 80px;
}

.services-heading > p {
  margin: 0 0 4px;
  color: #b9bbbf;
  font-size: 18px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: background 0.25s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.055);
}

.service-card h3 {
  min-height: 52px;
  font-size: 22px;
}

.service-card p {
  color: #aeb0b4;
  font-size: 15px;
}

.clients-block {
  margin-top: 110px;
  padding-top: 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.clients-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.clients-heading .section-kicker {
  margin-bottom: 8px;
}

.clients-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 64px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.client-logo {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.client-logo:hover {
  border-color: rgba(243, 108, 33, 0.7);
  transform: translateY(-3px);
}

.client-logo img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}

.client-logo-dark {
  background: #26282b;
}

.contact-section {
  padding: 96px 0;
  background: var(--surface);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  padding: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 0, rgba(243, 108, 33, 0.42), transparent 32%),
    var(--dark);
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(23, 24, 26, 0.2);
}

.contact-panel::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.section-kicker-light {
  color: #ff9e69;
}

.contact-intro h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.contact-items {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.contact-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 17px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(243, 108, 33, 0.7);
  transform: translateX(4px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brand);
  border-radius: 14px;
}

.contact-icon svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-item span {
  display: block;
  margin-bottom: 3px;
  color: #aeb0b4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item address,
.contact-item a {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 570;
  line-height: 1.65;
}

.contact-item a:hover {
  color: #ff9e69;
}

.site-footer {
  padding: 34px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  width: 170px;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.back-to-top {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.back-to-top span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  animation: fadeUp 0.75s ease both;
}

.reveal-delay {
  animation-delay: 0.12s;
}

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

@media (max-width: 960px) {
  body.menu-open::before {
    content: "";
    position: fixed;
    z-index: 90;
    inset: 78px 0 0;
    background: rgba(23, 24, 26, 0.28);
    backdrop-filter: blur(2px);
  }

  .site-header {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(23, 24, 26, 0.08);
    box-shadow: 0 8px 24px rgba(23, 24, 26, 0.06);
    backdrop-filter: blur(16px);
  }

  .header-inner {
    position: relative;
    min-height: 78px;
  }

  .brand {
    width: 176px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

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

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

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

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 78px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: calc(100svh - 78px);
    margin: 0;
    padding: 6px 14px 14px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 50px rgba(23, 24, 26, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin: 0;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  .site-nav a:not(.nav-contact)::after {
    display: none;
  }

  .nav-contact {
    min-height: 46px !important;
    justify-content: center;
    margin-top: 8px;
    padding: 0 18px !important;
    border-bottom: 0 !important;
    text-align: center;
  }

  .hero {
    height: auto;
    min-height: 820px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 148px;
    padding-bottom: 110px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .visual-frame {
    width: min(62vw, 390px);
    margin-left: 13%;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .about-intro,
  .services-heading {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .value-card,
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    grid-column: span 1;
  }

  .value-card:last-child {
    grid-column: span 2;
  }

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

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

  .section-copy {
    max-width: 720px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px;
  }
}

@media (max-width: 620px) {
  body.menu-open::before {
    inset: 72px 0 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    width: 151px;
  }

  .site-nav {
    top: 72px;
    max-height: calc(100svh - 72px);
    padding: 6px 14px 12px;
    border-radius: 0 0 16px 16px;
  }

  .site-nav a {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 15px;
  }

  .nav-contact {
    min-height: 44px !important;
  }

  .hero {
    min-height: 760px;
  }

  .hero-layout {
    padding-top: 125px;
    padding-bottom: 92px;
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 63px);
  }

  .hero h1 small {
    margin-top: 14px;
    font-size: 0.44em;
  }

  .hero-tagline {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .visual-frame {
    width: min(74vw, 320px);
    margin-left: 9%;
  }

  .scroll-cue {
    display: none;
  }

  .why-section {
    padding: 90px 0;
  }

  .about-section,
  .services-section {
    padding: 90px 0;
  }

  .about-intro {
    gap: 28px;
    padding-bottom: 62px;
  }

  .about-copy {
    font-size: 16px;
  }

  .values-heading {
    margin-top: 62px;
  }

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

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

  .clients-block {
    margin-top: 74px;
    padding-top: 62px;
  }

  .clients-heading {
    display: block;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 34px;
  }

  .client-logo {
    min-height: 112px;
    padding: 18px;
    border-radius: 14px;
  }

  .client-logo img {
    height: 58px;
  }

  .value-card,
  .value-card:nth-child(4),
  .value-card:nth-child(5),
  .value-card:last-child {
    grid-column: span 1;
  }

  .value-card {
    min-height: 190px;
    padding: 18px;
  }

  .value-card h3 {
    font-size: 18px;
    line-height: 1.2;
  }

  .value-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .service-card {
    min-height: 210px;
    padding: 16px;
  }

  .service-card h3 {
    min-height: 0;
    font-size: 17px;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .why-layout {
    gap: 42px;
  }

  .section-copy h2,
  .contact-intro h2 {
    font-size: 40px;
  }

  .section-description {
    font-size: 16px;
  }

  .market-card {
    padding: 14px;
    border-radius: 22px;
  }

  .market-image-wrap {
    border-radius: 14px;
  }

  .contact-section {
    padding-bottom: 62px;
  }

  .contact-panel {
    width: 100%;
    padding: 38px 20px;
    border-radius: 0;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding: 15px;
  }

  .contact-icon {
    width: 42px;
    height: 42px;
  }

  .contact-item address,
  .contact-item a {
    font-size: 14px;
  }

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

  .footer-copy {
    max-width: 280px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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