:root {
  --text: #111827;
  --muted: #657083;
  --line: #e4e9f2;
  --bg: #f7f8fb;
  --panel: #ffffff;
  --blue: #2458ff;
  --cyan: #1cc7ff;
  --green: #49d6a3;
  --navy: #101b3d;
  --radius: 18px;
  --shadow: 0 22px 70px rgba(17, 24, 39, .09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
  background: var(--bg);
  line-height: 1.8;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px min(5vw, 72px);
  background: transparent;
  border-bottom: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

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

.brand img {
  display: block;
  width: clamp(132px, 12vw, 190px);
  height: auto;
}

.site-nav {
  position: absolute;
  right: min(5vw, 72px);
  top: 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 220px;
  padding: 16px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(17, 24, 39, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease;
  backdrop-filter: blur(14px);
}

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

.site-header.menu-open:not(.is-scrolled) .site-nav {
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.menu-open:not(.is-scrolled) .menu-toggle {
  display: none;
}

.site-nav a {
  position: relative;
  color: #161616;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  padding: 10px 14px;
  text-align: right;
  border-radius: 10px;
}

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

.site-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

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

.nav-contact {
  order: -1;
  padding: 16px 28px;
  color: #fff !important;
  background: #232323;
  border: 1px solid #232323;
  border-radius: 10px;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.nav-contact::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  background: #dbff80;
  border-radius: 50%;
}

.nav-contact:hover {
  color: #161616 !important;
  background: rgba(255, 255, 255, .92);
  border-color: #161616;
}

.menu-toggle {
  display: inline-grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding: 15px;
  background: #232323;
  border: 1px solid #232323;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, .92);
  border-color: #161616;
}

.menu-toggle:hover span {
  background: #161616;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 65vh;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: 40px;
  align-items: center;
  padding: 92px min(5vw, 72px) 46px;
  background:
    linear-gradient(90deg, rgba(0, 88, 210, .28), rgba(255, 255, 255, .02) 48%, rgba(113, 214, 72, .18)),
    url("assets/hero-bg.png") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: .36;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 74% 52%, transparent 0 30%, rgba(255, 255, 255, .38) 30.2% 30.7%, transparent 31%),
    radial-gradient(ellipse at 77% 55%, transparent 0 36%, rgba(255, 255, 255, .42) 36.2% 36.7%, transparent 37%),
    radial-gradient(ellipse at 80% 58%, transparent 0 42%, rgba(255, 255, 255, .5) 42.2% 42.7%, transparent 43%),
    radial-gradient(ellipse at 82% 62%, transparent 0 48%, rgba(255, 255, 255, .36) 48.2% 48.7%, transparent 49%);
  transform: rotate(-17deg) scale(1.22);
  transform-origin: 78% 55%;
  pointer-events: none;
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: lowercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

.hero .section-kicker {
  color: rgba(255, 255, 255, .84);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 18px 42px rgba(183, 92, 41, .16);
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  font-weight: 800;
}

.hero-graphic {
  position: relative;
  z-index: 1;
  min-height: 330px;
  pointer-events: none;
}

.touchpoint-net {
  position: absolute;
  inset: 4% 0 2% 0;
  z-index: 2;
  opacity: .86;
}

.touch-dot,
.connect-line {
  position: absolute;
  display: block;
  pointer-events: none;
}

.touch-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, .12), 0 12px 30px rgba(34, 92, 180, .18);
  animation: touch-drift-a 8s ease-in-out infinite;
}

.dot-blue {
  right: 13%;
  top: 22%;
  background: #2867ff;
}

.dot-cyan {
  right: 38%;
  top: 34%;
  width: 9px;
  height: 9px;
  background: #21b7ee;
  animation: touch-drift-b 9.5s ease-in-out infinite;
}

.dot-green {
  right: 23%;
  top: 49%;
  width: 13px;
  height: 13px;
  background: #37c766;
  animation: touch-drift-c 7.8s ease-in-out infinite;
}

.dot-lime {
  right: 7%;
  top: 39%;
  width: 10px;
  height: 10px;
  background: #9be35c;
  animation: touch-drift-b 8.8s ease-in-out infinite reverse;
}

.dot-orange {
  right: 31%;
  top: 18%;
  width: 8px;
  height: 8px;
  background: #ff9a2f;
  box-shadow: 0 0 0 7px rgba(255, 154, 47, .12), 0 12px 30px rgba(255, 154, 47, .12);
  animation: touch-drift-c 10s ease-in-out infinite reverse;
}

.connect-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(40, 103, 255, 0), rgba(40, 103, 255, .3), rgba(55, 199, 102, .22), rgba(40, 103, 255, 0));
  transform-origin: left center;
  opacity: 0;
  animation: connection-pulse 8s ease-in-out infinite;
}

.line-one {
  right: 14%;
  top: 26%;
  width: 250px;
  transform: rotate(153deg);
}

.line-two {
  right: 9%;
  top: 42%;
  width: 210px;
  transform: rotate(165deg);
  animation-duration: 9.4s;
  animation-delay: -2.6s;
}

.line-three {
  right: 24%;
  top: 51%;
  width: 180px;
  transform: rotate(-128deg);
  background: linear-gradient(90deg, rgba(33, 183, 238, 0), rgba(33, 183, 238, .24), rgba(255, 154, 47, .16), rgba(33, 183, 238, 0));
  animation-duration: 10s;
  animation-delay: -5.2s;
}

.hero-ghost {
  position: absolute;
  right: -17%;
  bottom: -12%;
  color: rgba(55, 94, 255, .1);
  font-size: clamp(76px, 10vw, 154px);
  font-weight: 900;
  line-height: .86;
  white-space: nowrap;
  transform: rotate(-8deg);
}

.flow-line {
  display: none;
  position: absolute;
  left: -20%;
  top: 48%;
  width: 135%;
  height: 260px;
  border: 4px solid rgba(255, 255, 255, .22);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  transform: rotate(-18deg);
  opacity: .28;
}

.line-b {
  top: 38%;
  width: 122%;
  height: 320px;
  border-width: 3px;
  opacity: .55;
}

.line-c {
  top: 58%;
  width: 148%;
  height: 210px;
  border-width: 2px;
  opacity: .75;
}

.line-d {
  top: 30%;
  width: 106%;
  height: 380px;
  border-width: 2px;
  opacity: .48;
}

.hero-news {
  position: absolute;
  right: min(8vw, 110px);
  bottom: 9%;
  z-index: 4;
  width: min(38vw, 520px);
}

.hero-news p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #171717;
  font-size: 18px;
  font-weight: 900;
}

.hero-news p span {
  display: inline-block;
  width: 22px;
  height: 3px;
  background: #ef6a3e;
}

.hero-news a {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 18px 24px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, .9);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(117, 83, 42, .13);
}

.hero-news time {
  font-weight: 900;
}

.hero-news strong {
  font-size: 15px;
  line-height: 1.7;
}

@keyframes touch-drift-a {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 8px -10px;
  }
}

@keyframes touch-drift-b {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: -10px 7px;
  }
}

@keyframes touch-drift-c {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 6px 12px;
  }
}

@keyframes connection-pulse {
  0%,
  28%,
  100% {
    opacity: 0;
  }

  42%,
  62% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .touch-dot,
  .connect-line {
    animation: none;
  }
}

.section {
  padding: 78px min(5vw, 72px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(520px, .95fr) minmax(420px, 1fr);
  gap: clamp(64px, 8vw, 132px);
  align-items: start;
  padding-top: 124px;
  padding-bottom: 124px;
  background: #fff;
}

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

.section-heading.compact {
  display: block;
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.08;
}

.about-heading .section-kicker {
  position: relative;
  margin-bottom: 52px;
  padding-left: 28px;
  color: var(--text);
  font-size: 24px;
  text-transform: none;
}

.about-heading .section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  background: #ff9d35;
  border-radius: 50%;
}

.about-heading h2 {
  font-size: clamp(34px, 3.35vw, 48px);
  line-height: 1.9;
  letter-spacing: 0;
}

.about-body {
  display: grid;
  gap: 42px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 2.35;
}

.about-body p {
  margin: 0;
}

.service-section {
  padding: 72px min(5vw, 72px) 96px;
  background: #fff;
}

.service-shell {
  padding: clamp(56px, 7vw, 92px);
  background: url("assets/hero-bg.png") center / cover no-repeat;
  border-radius: 48px;
  overflow: hidden;
}

.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 72px;
}

.service-heading h2,
.news-heading h2,
.company-heading h2 {
  margin: 0 0 12px;
  color: #222;
  font-size: clamp(48px, 6.4vw, 84px);
  line-height: .95;
}

.service-heading p,
.news-heading p,
.company-heading p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: #161616;
  font-weight: 900;
}

.service-heading span,
.news-heading span,
.company-heading span {
  width: 10px;
  height: 10px;
  background: #ff9d35;
  border-radius: 50%;
}

.service-list {
  display: grid;
  gap: 28px;
  max-width: 1180px;
  margin-inline: auto;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 52px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  min-height: 300px;
  padding: 46px 54px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .76);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(119, 75, 40, .1);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(119, 75, 40, .16);
}

.service-visual {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8ff, #ffffff);
}

.service-visual::before,
.service-visual::after,
.service-visual span {
  content: "";
  position: absolute;
  display: block;
}

.photo-visual {
  background: #fff;
}

.photo-visual::before,
.photo-visual::after {
  display: none;
}

.photo-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-ads {
  background: radial-gradient(circle at 58% 22%, #ffffff 0 19%, transparent 20%), linear-gradient(135deg, #dff5ff, #ffffff 58%, #ffe7d6);
}

.visual-ads::before {
  left: 52px;
  top: 72px;
  width: 116px;
  height: 84px;
  background: #ffffff;
  border: 8px solid #2458ff;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(36, 88, 255, .16);
}

.visual-ads::after {
  left: 92px;
  top: 108px;
  width: 48px;
  height: 14px;
  background: #ff9d35;
  border-radius: 999px;
}

.visual-media {
  background: linear-gradient(135deg, #f6fbff, #ffffff 52%, #e4f8ef);
}

.visual-media::before {
  left: 48px;
  top: 54px;
  width: 124px;
  height: 142px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: inset 0 0 0 8px #101b3d, 0 18px 36px rgba(16, 27, 61, .12);
}

.visual-media::after {
  left: 72px;
  top: 86px;
  width: 76px;
  height: 8px;
  background: #49d6a3;
  border-radius: 999px;
  box-shadow: 0 28px 0 #2458ff, 0 56px 0 #ff9d35;
}

.visual-creative {
  background: linear-gradient(135deg, #fff7e8, #ffffff 52%, #e8f7ff);
}

.visual-creative::before {
  left: 46px;
  top: 76px;
  width: 130px;
  height: 90px;
  background: linear-gradient(135deg, #2458ff, #1cc7ff);
  border-radius: 22px;
  transform: rotate(-8deg);
  box-shadow: 0 18px 34px rgba(36, 88, 255, .18);
}

.visual-creative::after {
  right: 48px;
  top: 48px;
  width: 52px;
  height: 52px;
  background: #ff9d35;
  border-radius: 50%;
}

.service-content {
  max-width: 720px;
}

.service-en {
  margin: 0 0 14px;
  color: #ff8f5e;
  font-size: 14px;
  font-weight: 500;
}

.service-card h3 {
  margin: 0 0 24px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.35;
}

.service-card p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 2;
}

.service-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  align-self: end;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  background: #232323;
  border-radius: 10px;
  transition: transform .18s ease, background .18s ease;
}

.service-arrow:hover {
  transform: translateX(3px);
  background: var(--blue);
}

.news-section {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
  padding-top: 112px;
  padding-bottom: 112px;
  background: #fff;
}

.news-list {
  display: grid;
  gap: 24px;
  padding-top: 18px;
}

.news-empty {
  margin: 0;
  padding: 34px 40px;
  color: var(--muted);
  font-weight: 800;
  background: #f4f4f5;
  border-radius: 18px;
}

.company-section {
  position: relative;
  overflow: hidden;
  background: #f7f8fb;
}

.company-section::before {
  content: "";
  position: absolute;
  top: 220px;
  right: 40px;
  z-index: 0;
  width: min(38vw, 520px);
  aspect-ratio: 910 / 833;
  background: linear-gradient(135deg, #158dff 10%, #14c8df 48%, #58d96c 88%);
  opacity: .18;
  -webkit-mask: url("assets/company-symbol-mask.png") center / contain no-repeat;
  mask: url("assets/company-symbol-mask.png") center / contain no-repeat;
  pointer-events: none;
}

.company-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 56px;
}

.company-table {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-table tr {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.company-table tr + tr {
  border-top: 1px solid var(--line);
}

.company-table th,
.company-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
}

.company-table th {
  color: var(--muted);
  background: #f5f7fb;
  font-weight: 900;
}

.company-table a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin: 0 min(5vw, 72px) 72px;
  padding: 46px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(28, 199, 255, .28), transparent 20rem),
    linear-gradient(135deg, var(--navy), #1738a8);
  border-radius: 28px;
  overflow: hidden;
}

.contact-section h2,
.contact-section p {
  margin: 0;
}

.contact-section .section-kicker {
  color: #8fe5ff;
}

.contact-section h2 {
  margin-bottom: 12px;
}

.contact-section p {
  color: rgba(255, 255, 255, .8);
}

.contact-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .16);
}

.site-footer {
  padding: 28px min(5vw, 72px);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .about-section,
  .news-section,
  .section-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 38px;
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero-graphic {
    position: absolute;
    inset: 0;
    min-height: 0;
    pointer-events: none;
  }

  .hero-ghost {
    right: -26%;
    bottom: 14%;
    font-size: 92px;
  }

  .touchpoint-net {
    inset: 9% 0 30% 0;
  }

  .hero-news {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 560px);
    margin-top: 34px;
  }

  .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-arrow {
    align-self: auto;
    justify-self: end;
  }

  .contact-button {
    justify-self: start;
  }

  .company-section::before {
    top: 190px;
    right: -60px;
    width: 380px;
    opacity: .105;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    gap: 10px;
    padding: 20px;
  }

  .brand img {
    width: 118px;
  }

  .site-nav {
    right: 20px;
    left: 20px;
    top: 92px;
    min-width: 0;
  }

  .nav-contact {
    padding: 10px 16px;
  }

  .hero {
    min-height: auto;
    padding: 136px 20px 48px;
  }

  .dot-cyan,
  .dot-orange,
  .line-three {
    display: none;
  }

  .touchpoint-net {
    inset: 10% 0 46% 0;
  }

  .touch-dot {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .1);
  }

  .dot-blue {
    right: 10%;
    top: 22%;
  }

  .dot-green {
    right: 23%;
    top: 52%;
    width: 9px;
    height: 9px;
  }

  .dot-lime {
    right: 5%;
    top: 44%;
  }

  .hero-ghost {
    right: -58%;
    bottom: 18%;
    font-size: 70px;
  }

  .line-one,
  .line-two {
    width: 120px;
    opacity: .65;
  }

  h1 {
    font-size: 42px;
  }

  .section,
  .contact-section,
  .site-footer {
    margin-inline: 20px;
    padding-inline: 0;
  }

  .section {
    padding: 72px 20px;
    margin: 0;
  }

  .service-section {
    padding: 44px 16px 64px;
  }

  .service-shell {
    padding: 44px 18px;
    border-radius: 34px;
  }

  .service-heading {
    margin-bottom: 36px;
  }

  .service-heading h2,
  .news-heading h2,
  .company-heading h2 {
    font-size: 42px;
  }

  .service-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .company-section::before {
    top: 128px;
    right: -144px;
    width: 280px;
    opacity: .075;
  }

  .service-visual {
    width: 168px;
  }

  .news-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .news-empty {
    padding: 24px 22px;
  }

  .about-heading .section-kicker {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .about-heading h2 {
    font-size: 32px;
    line-height: 1.55;
  }

  .about-body {
    gap: 22px;
    font-size: 16px;
    line-height: 2;
  }

  .company-table tr {
    grid-template-columns: 1fr;
  }

  .company-table th,
  .company-table td {
    padding: 14px 16px;
  }

  .contact-section {
    padding: 34px 22px;
  }
}
