:root {
  --navy-950: #061b35;
  --navy-900: #08284d;
  --navy-800: #0c3768;
  --blue-700: #0b5eb5;
  --blue-600: #1476d4;
  --blue-100: #eaf4ff;
  --blue-050: #f5f9fe;
  --orange: #ef5b22;
  --orange-dark: #d94710;
  --ink: #11243c;
  --muted: #5f6f82;
  --line: #d8e2ed;
  --white: #fff;
  --shadow: 0 18px 48px rgba(8, 40, 77, 0.12);
  --radius: 16px;
  --container: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic",
    "Meiryo", system-ui, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-150%);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 226, 237, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  width: 260px;
  flex: 0 0 auto;
  align-items: center;
}

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

.global-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.global-nav a {
  position: relative;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.global-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(239, 91, 34, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.button::after {
  content: "→";
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  border-color: var(--blue-700);
  background: var(--white);
  color: var(--blue-700);
  box-shadow: none;
}

.button-light:hover {
  background: var(--blue-050);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--blue-050);
}

.section-navy {
  color: var(--white);
  background: var(--navy-950);
}

.section-heading {
  display: flex;
  margin-bottom: 46px;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.section-heading h2,
.section-heading h1 {
  max-width: 820px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.section-heading.is-light h2,
.section-heading.is-light p {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 27, 53, 0.96) 0%, rgba(6, 27, 53, 0.76) 46%, rgba(6, 27, 53, 0.1) 80%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: -80px;
  bottom: -150px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-home {
  --hero-image: url("assets/business-01.jpg");
}

.hero-service {
  --hero-image: url("assets/business-02.jpg");
  min-height: 620px;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  max-width: 720px;
  padding: 94px 0 110px;
  flex-direction: column;
  justify-content: center;
}

.hero .eyebrow {
  color: #80c2ff;
}

.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.hero-lead {
  max-width: 690px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.95;
}

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

.hero-note {
  position: absolute;
  right: 5vw;
  bottom: 34px;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.proof-grid {
  display: grid;
  padding: 26px 34px;
  border: 1px solid rgba(216, 226, 237, 0.8);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 6px 24px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 22px;
  line-height: 1.35;
}

.proof-item span {
  color: var(--muted);
  font-size: 12px;
}

.service-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  grid-template-columns: 1fr;
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 27, 53, 0.94), rgba(6, 27, 53, 0.3)),
    var(--card-image) center / cover no-repeat;
  content: "";
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scale(1.035);
}

.service-card-content {
  display: flex;
  max-width: 610px;
  padding: 42px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.service-card .number {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  font-weight: 800;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.3;
}

.service-card p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.text-link {
  color: inherit;
  font-weight: 800;
}

.text-link::after {
  margin-left: 10px;
  content: "→";
}

.business-list {
  display: grid;
  margin-top: 24px;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
}

.business-list a {
  min-height: 88px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.business-list a:hover {
  border-color: var(--blue-600);
  transform: translateY(-3px);
}

.split-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy-900);
  box-shadow: var(--shadow);
  grid-template-columns: 1fr 1fr;
}

.split-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-panel-copy {
  display: flex;
  padding: clamp(42px, 6vw, 76px);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
}

.split-panel-copy .eyebrow {
  color: #80c2ff;
}

.split-panel-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.28;
}

.split-panel-copy p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.8);
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

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

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card-body {
  padding: 24px;
}

.news-card time,
.article-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.news-card h3 {
  margin: 10px 0 0;
  color: var(--navy-900);
  font-size: 18px;
  line-height: 1.55;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 27, 53, 0.98), rgba(11, 94, 181, 0.85)),
    url("assets/article-section.jpg") center / cover no-repeat;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 710px;
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.3;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.breadcrumb {
  padding: 22px 0;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 9px;
  color: #9aabba;
  content: "/";
}

.intro-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1.05fr 0.95fr;
}

.intro-grid img {
  width: 100%;
  min-height: 380px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.intro-copy h2 {
  margin: 0 0 24px;
  color: var(--navy-950);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.3;
}

.intro-copy p {
  color: var(--muted);
}

.strength-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.strength-card {
  position: relative;
  min-height: 360px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.strength-card.featured {
  padding-right: 190px;
  color: var(--white);
  background: var(--navy-900);
  grid-column: span 2;
}

.strength-card.featured .strength-number,
.strength-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.strength-card.featured img {
  position: absolute;
  right: -26px;
  bottom: -65px;
  width: 240px;
  opacity: 0.96;
}

.strength-number {
  display: block;
  margin-bottom: 70px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.strength-card h3 {
  margin: 0 0 16px;
  color: inherit;
  font-size: 25px;
  line-height: 1.4;
}

.strength-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.location-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.location-card {
  padding: 28px;
  border-top: 4px solid var(--blue-600);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 40, 77, 0.08);
}

.location-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.location-card span {
  color: var(--muted);
  font-size: 13px;
}

.process {
  display: grid;
  margin: 40px 0 0;
  gap: 12px;
  grid-template-columns: repeat(5, 1fr);
}

.process-item {
  position: relative;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  text-align: center;
}

.process-item:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 2;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--blue-600);
  border-right: 2px solid var(--blue-600);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.process-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.process-item strong {
  color: var(--navy-900);
  font-size: 15px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.faq-question {
  display: flex;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  color: var(--blue-600);
  content: "+";
  font-size: 24px;
  font-weight: 400;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.article-header {
  padding: 44px 0 76px;
}

.article-header-grid {
  display: grid;
  align-items: start;
  gap: 60px;
  grid-template-columns: 1fr 330px;
}

.article-category {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--blue-700);
  background: var(--blue-100);
  font-size: 12px;
  font-weight: 900;
}

.article-header h1 {
  margin: 0 0 22px;
  color: var(--navy-950);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.article-dek {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.article-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.supervisor-card {
  padding: 26px;
  border-top: 4px solid var(--blue-600);
  background: var(--blue-050);
}

.supervisor-card .label {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
}

.supervisor-card strong {
  display: block;
  margin: 10px 0 3px;
  color: var(--navy-900);
  font-size: 20px;
}

.supervisor-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.article-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-visual img {
  width: 100%;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
}

.article-layout {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 1fr) 290px;
}

.article-body {
  min-width: 0;
}

.article-body > p {
  margin: 0 0 24px;
  color: #34465b;
}

.article-body h2 {
  margin: 72px 0 24px;
  padding: 0 0 16px;
  border-bottom: 2px solid var(--blue-600);
  color: var(--navy-950);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.35;
}

.article-body h3 {
  margin: 46px 0 16px;
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1.5;
}

.article-body img {
  width: 100%;
  margin: 34px 0;
  border-radius: 12px;
}

.summary-box,
.toc,
.article-cta {
  margin: 34px 0;
  padding: 30px;
  border-radius: 12px;
}

.summary-box {
  border: 1px solid #bad8f5;
  background: var(--blue-050);
}

.summary-box h2,
.toc h2 {
  margin: 0 0 15px;
  padding: 0;
  border: 0;
  font-size: 21px;
}

.summary-box ul,
.toc ol,
.checklist {
  margin: 0;
  padding-left: 1.35em;
}

.summary-box li,
.toc li,
.checklist li {
  margin: 7px 0;
}

.toc {
  border-left: 4px solid var(--navy-900);
  background: #f5f6f8;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: var(--navy-900);
}

.article-cta h3 {
  margin: 0 0 7px;
  color: var(--white);
}

.article-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.sidebar-box {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.sidebar-box.is-blue {
  color: var(--white);
  background: var(--navy-900);
}

.sidebar-box h2 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.5;
}

.sidebar-box p {
  margin: 0 0 18px;
  color: inherit;
  font-size: 13px;
  opacity: 0.8;
}

.sidebar-box .button {
  width: 100%;
}

.sidebar-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-nav li + li {
  border-top: 1px solid var(--line);
}

.sidebar-nav a {
  display: block;
  padding: 11px 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.footer {
  padding: 72px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

.footer-brand img {
  width: 280px;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 6px;
  background: var(--white);
}

.footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
}

.footer p,
.footer a {
  font-size: 12px;
}

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

.footer li {
  margin: 8px 0;
}

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

.footer-bottom {
  display: flex;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
}

.source-note {
  padding: 12px 0;
  color: #68788a;
  background: #eef3f8;
  font-size: 11px;
  text-align: center;
}

@media (max-width: 1080px) {
  .global-nav {
    gap: 18px;
  }

  .global-nav a {
    font-size: 12px;
  }

  .brand {
    width: 220px;
  }

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

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(-n + 2) {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 760px);
  }

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

  .site-header {
    background: var(--white);
    backdrop-filter: none;
  }

  .brand {
    width: 225px;
  }

  .menu-toggle {
    display: block;
  }

  .global-nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    height: calc(100dvh - 72px);
    padding: 40px 26px;
    overflow-y: auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .global-nav .button {
    margin-top: 18px;
    border-bottom: 0;
  }

  .hero {
    min-height: 620px;
    background:
      linear-gradient(90deg, rgba(6, 27, 53, 0.95), rgba(6, 27, 53, 0.55)),
      var(--hero-image) center / cover no-repeat;
  }

  .proof-strip {
    margin-top: -28px;
  }

  .service-grid,
  .intro-grid,
  .split-panel,
  .article-header-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

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

  .split-panel img {
    min-height: 340px;
  }

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

  .strength-card.featured {
    grid-column: span 1;
  }

  .article-sidebar {
    position: static;
  }

  .article-header-grid {
    gap: 30px;
  }

  .article-layout {
    gap: 40px;
  }

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

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

@media (max-width: 680px) {
  :root {
    --container: calc(100% - 28px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding: 74px 0 90px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-note {
    right: 20px;
    bottom: 18px;
  }

  .proof-grid {
    padding: 20px;
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 15px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(-n + 2) {
    margin: 0;
    padding-bottom: 15px;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .news-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 420px;
  }

  .service-card-content {
    padding: 30px;
  }

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

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

  .process-item:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -11px;
    transform: translateX(50%) rotate(135deg);
  }

  .article-header {
    padding-top: 24px;
  }

  .article-cta,
  .cta-band-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .article-cta .button {
    width: 100%;
  }

  .strength-card.featured {
    padding-right: 34px;
    padding-bottom: 210px;
  }

  .strength-card.featured img {
    right: 50%;
    bottom: -84px;
    transform: translateX(50%);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
