:root {
  --navy: #071b33;
  --navy-soft: #102d4a;
  --azure: #197fa9;
  --cyan: #70d6e8;
  --cyan-pale: #f4ffff;
  --base: #f4ffff;
  --mist: #f4ffff;
  --gold: #edc45e;
  --gold-bright: #ffe194;
  --gold-text: #d99d24;
  --ink: #122438;
  --muted: #516579;
  --line: rgba(18, 49, 74, 0.13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(6, 22, 40, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--base);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
}

.container {
  width: min(1180px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--azure);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.section {
  position: relative;
  padding: 100px 0;
}

.section-title {
  margin: 15px 0 18px;
  color: var(--navy);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.42;
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
  font-size: 1rem;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.light-header {
  border-color: rgba(15, 47, 73, 0.1);
  background: rgba(244, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(4, 23, 43, 0.05);
  backdrop-filter: blur(14px);
}

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

.brand {
  position: relative;
  display: block;
  width: clamp(215px, 25vw, 290px);
  height: 78px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: 53%;
  width: 96%;
  height: auto;
  transform: translateY(-50%);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  transition: color 0.2s ease;
}

.site-header.is-scrolled .nav-link,
.site-header.light-header .nav-link {
  color: var(--navy-soft);
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
  content: "";
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--gold-bright);
}

.site-header.is-scrolled .nav-link.active,
.site-header.light-header .nav-link.active {
  color: var(--azure);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 11px 22px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  transition: all 0.22s ease;
}

.header-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.site-header.is-scrolled .header-cta,
.site-header.light-header .header-cta {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  color: white;
}

.site-header.is-scrolled .menu-toggle,
.site-header.light-header .menu-toggle {
  border-color: var(--line);
  color: var(--navy);
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentcolor;
  transition: all 0.22s ease;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--base);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 255, 255, 0.99) 0%, rgba(244, 255, 255, 0.94) 37%, rgba(244, 255, 255, 0.68) 50%, rgba(244, 255, 255, 0.2) 70%, rgba(244, 255, 255, 0.05) 100%),
    url("../images/hero-cinematic.jpg") center right / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(244, 255, 255, 0.28));
  content: "";
}

.data-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image: radial-gradient(circle, rgba(111, 214, 232, 0.48) 1px, transparent 1px);
  background-position: right 18% top 24%;
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 80% 30%, #000 0, transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 84px;
  padding-bottom: 70px;
}

.hero-copy {
  width: min(780px, 100%);
}

.hero .eyebrow {
  color: var(--azure);
}

.hero-title {
  margin: 26px 0 27px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1.38;
  color: var(--navy);
}

.hero-title .highlight {
  color: var(--gold-text);
}

.hero-subtitle {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  letter-spacing: 0.045em;
}

.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 44px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 31px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button-primary {
  background: linear-gradient(115deg, var(--gold), var(--gold-bright));
  color: var(--navy);
  box-shadow: 0 13px 30px rgba(237, 196, 94, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(237, 196, 94, 0.43);
}

.button-secondary {
  border: 1px solid rgba(25, 127, 169, 0.35);
  color: var(--navy);
}

.button-secondary:hover {
  border-color: var(--cyan);
  background: rgba(112, 214, 232, 0.16);
}

.hero-stats {
  position: absolute;
  z-index: 2;
  right: max(calc((100% - 1180px) / 2), 24px);
  bottom: 40px;
  display: flex;
  gap: 36px;
  border: 1px solid rgba(25, 127, 169, 0.13);
  border-left: 2px solid var(--azure);
  border-radius: 2px;
  padding: 17px 22px 14px 26px;
  background: rgba(244, 255, 255, 0.83);
  box-shadow: 0 14px 36px rgba(16, 45, 74, 0.08);
  backdrop-filter: blur(7px);
}

.hero-stat strong {
  display: block;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
}

.hero-stat span {
  color: var(--azure);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.competence {
  background: var(--mist);
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.competence-card {
  position: relative;
  min-height: 345px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 38px 31px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.competence-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.competence-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan));
  content: "";
}

.card-number {
  color: rgba(25, 127, 169, 0.18);
  font-family: "Cormorant Garamond", serif;
  font-size: 4.1rem;
  line-height: 1;
}

.competence-card h3 {
  margin: 17px 0 18px;
  color: var(--navy);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  line-height: 1.65;
}

.competence-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 68px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 18px -18px -18px 28px;
  z-index: -1;
  border: 1px solid rgba(25, 127, 169, 0.2);
  content: "";
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lead-section {
  overflow: hidden;
  background: var(--white);
}

.lead-section::before {
  position: absolute;
  right: -220px;
  bottom: -280px;
  width: 630px;
  height: 630px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 214, 232, 0.15), transparent 67%);
  content: "";
}

.lead-text p + p {
  margin-top: 21px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 17px;
  margin-top: 32px;
  color: var(--azure);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.text-link::after {
  width: 44px;
  height: 1px;
  background: var(--gold);
  content: "";
  transition: width 0.2s ease;
}

.text-link:hover::after {
  width: 62px;
}

.news {
  color: var(--ink);
  background: linear-gradient(132deg, var(--base), #e7f9fb);
}

.news .section-title {
  color: var(--navy);
}

.news .eyebrow {
  color: var(--azure);
}

.news-grid {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 154px 118px 1fr;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.news-item time {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.news-tag {
  border: 1px solid rgba(25, 127, 169, 0.25);
  border-radius: 999px;
  padding: 4px 15px;
  color: var(--azure);
  font-size: 0.74rem;
  text-align: center;
}

.news-item p {
  font-size: 0.96rem;
  letter-spacing: 0.035em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 86px;
  color: var(--navy);
  background: var(--base);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background: url("../images/hero-cinematic.jpg") center / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 255, 255, 0.99), rgba(244, 255, 255, 0.72));
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: var(--azure);
}

.page-title {
  margin: 16px 0 12px;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 650;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

.page-lead {
  color: var(--muted);
  letter-spacing: 0.05em;
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 68px;
  align-items: start;
}

.mission-copy {
  padding-top: 14px;
}

.mission-copy .section-title {
  font-size: clamp(2rem, 3vw, 2.55rem);
}

.vision-panel {
  border-left: 2px solid var(--gold);
  padding: 22px 0 22px 38px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 2.15;
}

.representative {
  background: var(--mist);
}

.message-body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 2.08;
}

.message-body p + p {
  margin-top: 22px;
}

.signature {
  margin-top: 35px;
  color: var(--navy);
  text-align: right;
}

.signature small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.16em;
}

.signature strong {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.services {
  background: var(--mist);
}

.service-list {
  display: grid;
  gap: 29px;
  margin-top: 55px;
}

.service-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 36px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 43px 48px;
  background: white;
  box-shadow: 0 12px 38px rgba(6, 22, 40, 0.035);
}

.service-card:first-child {
  grid-template-columns: 112px minmax(300px, 1fr) 330px;
}

.service-image {
  overflow: hidden;
  border-radius: 3px;
}

.service-image img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: cover;
}

.service-no {
  color: rgba(25, 127, 169, 0.22);
  font-family: "Cormorant Garamond", serif;
  font-size: 4.8rem;
  line-height: 0.85;
}

.service-content h2 {
  margin: 0 0 19px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  letter-spacing: 0.055em;
  line-height: 1.7;
}

.service-content p {
  color: var(--muted);
  font-size: 0.94rem;
}

.process {
  background: white;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.process-item {
  border-top: 2px solid var(--cyan);
  padding: 27px 22px 8px;
}

.process-item span {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
}

.process-item h3 {
  margin: 10px 0;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.process-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.company-wrap {
  background: var(--mist);
}

.company-panel {
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.company-row {
  display: grid;
  grid-template-columns: 205px 1fr;
  border-bottom: 1px solid var(--line);
}

.company-row:last-child {
  border-bottom: 0;
}

.company-row dt,
.company-row dd {
  margin: 0;
  padding: 27px 34px;
}

.company-row dt {
  color: var(--azure);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.company-row dd {
  color: var(--ink);
  font-size: 0.96rem;
}

.company-row dd ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-row dd li::before {
  margin-right: 13px;
  color: var(--gold);
  content: "/";
}

.contact-wrap {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 124px;
}

.contact-note {
  margin-top: 25px;
  color: var(--muted);
}

.contact-meta {
  margin-top: 37px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-meta strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.12em;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 48px;
  background: white;
  box-shadow: 0 18px 60px rgba(5, 20, 38, 0.055);
}

.field {
  margin-bottom: 27px;
}

.field label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.required {
  color: var(--gold);
  font-size: 0.72rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(16, 45, 74, 0.19);
  border-radius: 2px;
  padding: 14px 16px;
  background: #fbfdfd;
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 178px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(112, 214, 232, 0.18);
}

.form-note {
  margin: 3px 0 29px;
  color: var(--muted);
  font-size: 0.82rem;
}

.submit-button {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(108deg, var(--navy), #124c70 60%, var(--azure));
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(7, 27, 51, 0.2);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: var(--navy);
  text-align: center;
  background: var(--base);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: url("../images/hero-cinematic.jpg") center / cover;
  content: "";
}

.cta-panel .container {
  position: relative;
}

.cta-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.cta-panel p {
  margin-bottom: 35px;
  color: var(--muted);
}

.site-footer {
  padding: 53px 0 34px;
  border-top: 1px solid rgba(25, 127, 169, 0.1);
  background: #e9fafb;
  color: var(--muted);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  border-bottom: 1px solid rgba(25, 127, 169, 0.14);
  padding-bottom: 38px;
}

.footer-wordmark {
  display: inline-flex;
  flex-direction: column;
  border-left: 2px solid var(--gold);
  padding-left: 17px;
}

.footer-wordmark span {
  color: var(--azure);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.footer-wordmark strong {
  color: var(--navy);
  font-size: 1.07rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.footer-tagline {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 26px;
  color: var(--navy-soft);
  font-size: 0.83rem;
  letter-spacing: 0.14em;
}

.copyright {
  padding-top: 28px;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
}

@media (max-width: 960px) {
  .container {
    width: min(100% - 40px, 680px) !important;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 82px 0 0;
    z-index: 29;
    height: calc(100svh - 82px);
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    padding: 30px 24px;
    background: var(--base);
  }

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

  .mobile-menu a {
    border-bottom: 1px solid rgba(25, 127, 169, 0.14);
    padding: 18px 8px;
    color: var(--navy);
    font-size: 0.95rem;
    letter-spacing: 0.16em;
  }

  .mobile-menu a.active {
    color: var(--azure);
  }

  .hero {
    min-height: 820px;
    align-items: flex-start;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(244, 255, 255, 0.96) 0%, rgba(244, 255, 255, 0.83) 61%, rgba(244, 255, 255, 0.93) 100%),
      url("../images/hero-cinematic.jpg") 68% center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 152px;
    padding-bottom: 145px;
  }

  .hero-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .hero-stats {
    right: 20px;
    bottom: 38px;
    left: 20px;
    justify-content: space-around;
    gap: 15px;
    padding: 17px 16px 14px;
  }

  .competence-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .competence-card {
    min-height: auto;
  }

  .split,
  .mission-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mission-grid {
    gap: 27px;
  }

  .contact-aside {
    position: static;
  }

  .service-card,
  .service-card:first-child {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-image {
    margin-top: 8px;
  }
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 36px) !important;
  }

  .section {
    padding: 70px 0;
  }

  .header-inner {
    height: 72px;
  }

  .brand {
    width: 218px;
    height: 67px;
  }

  .mobile-menu {
    inset-block-start: 72px;
    height: calc(100svh - 72px);
  }

  .hero {
    min-height: 780px;
  }

  .hero-inner {
    padding-top: 124px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 13px;
    margin-top: 34px;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .hero-stats {
    border-top: 1px solid rgba(25, 127, 169, 0.14);
    padding-top: 17px;
  }

  .hero-stat strong {
    font-size: 1.95rem;
  }

  .page-hero {
    padding: 128px 0 62px;
  }

  .competence-grid {
    margin-top: 35px;
  }

  .competence-card {
    padding: 29px 24px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 21px 0;
  }

  .vision-panel {
    padding: 12px 0 12px 22px;
    line-height: 1.9;
  }

  .service-card {
    padding: 29px 23px;
  }

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

  .company-row dt {
    padding: 20px 22px 0;
  }

  .company-row dd {
    padding: 9px 22px 21px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .footer-main {
    flex-direction: column;
    gap: 23px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}
