:root {
  --green: #1b385b;
  --green-2: #3a6496;
  --green-3: #dde6f0;
  --ink: #1a1f2e;
  --muted: #6b7a8d;
  --line: #d0dae6;
  --paper: #ffffff;
  --soft: #f0f4f8;
  --accent: #7aafd4;
  --shadow: 0 16px 40px rgba(27, 56, 91, 0.12);
  --shadow-soft: 0 6px 18px rgba(27, 56, 91, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f5f7fa;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 30px clamp(16px, 5vw, 64px) 42px;
  background: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px clamp(12px, 3vw, 36px);
  border: 1px solid rgba(27, 56, 91, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 320px) minmax(310px, 1fr) minmax(250px, 360px);
  gap: clamp(18px, 3vw, 38px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 350px;
}

.site-menu {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: clamp(18px, 6vw, 70px);
}

.menu-button {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  box-shadow: 0 18px 28px rgba(27, 56, 91, 0.22);
  cursor: pointer;
  list-style: none;
}

.menu-button::-webkit-details-marker {
  display: none;
}

.menu-button span {
  width: 34px;
  height: 4px;
  margin: 2px 0;
  border-radius: 99px;
  background: currentColor;
}

.menu-button small {
  display: block;
  margin-top: -6px;
  font-size: 12px;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  gap: 8px;
  width: 210px;
  padding: 12px;
  border: 1px solid rgba(27, 56, 91, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.menu-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--green);
  background: #f0f4f8;
  font-size: 14px;
}

.menu-panel a:hover {
  color: #fff;
  background: var(--green);
}

.logo-img {
  display: grid;
  place-items: center;
  padding: 20px;
}

.logo-img img {
  width: min(100%, 300px);
  height: auto;
  animation: logoFadeUp 1.2s ease both;
}

@keyframes logoFadeUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 320px);
  aspect-ratio: 1;
  padding: 36px 18px;
  border: 8px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 1) 0 26%, transparent 27%),
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.98) 0 58%, rgba(231, 252, 249, 0.98) 59% 100%);
  box-shadow:
    0 28px 54px rgba(0, 106, 122, 0.2),
    0 12px 20px rgba(27, 56, 91, 0.1),
    inset 0 0 0 10px rgba(255, 255, 255, 0.72);
  text-align: center;
  transform: translateY(-4px);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 183, 168, 0.22);
  pointer-events: none;
}

.logo-mark p {
  max-width: 210px;
  margin: 0;
  font-size: clamp(11px, 1.2vw, 14px);
  line-height: 1.55;
}

.logo-mark strong {
  font-size: clamp(40px, 4.7vw, 58px);
  line-height: 1;
}

.logo-mark span {
  font-size: clamp(20px, 2.4vw, 30px);
}

.logo-icons {
  display: flex;
  gap: 12px;
  font-size: 34px;
}

.hero__copy {
  min-width: 0;
}

.eyebrow,
.hero__copy p {
  margin: 0;
  font-size: clamp(16px, 2vw, 24px);
}

.hero__copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.18;
  text-wrap: balance;
}

.hero__copy h1 span {
  color: var(--green);
  font-size: 1.32em;
  text-shadow: 0 10px 24px rgba(27, 56, 91, 0.14);
}

.hero__copy p:last-child {
  max-width: 560px;
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8;
}

.hero__photo {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 260px;
}

.hero__photo img {
  width: min(100%, 410px);
  height: auto;
  min-height: 0;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  box-shadow: 0 26px 48px rgba(27, 56, 91, 0.14);
}

.feature-row,
.section,
.split-sections,
.pet-section,
.contact {
  max-width: 1180px;
  margin: 0 auto;
}

.feature-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.feature-card,
.panel,
.ba-card,
.contact-card {
  border: 1px solid rgba(27, 56, 91, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.feature-card {
  display: flex;
  gap: 18px;
  align-items: center;
  min-height: 130px;
  padding: 20px 26px;
  backdrop-filter: blur(10px);
}

.feature-card svg {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  color: var(--green);
  padding: 10px;
  border-radius: 50%;
  background: var(--green-3);
}

.feature-card h2 {
  margin: 0 0 9px;
  color: var(--green);
  font-size: clamp(18px, 2vw, 24px);
}

.feature-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 17px;
}

.section {
  padding: 34px clamp(16px, 4vw, 28px);
}

.section-title {
  position: relative;
  width: fit-content;
  margin: 0 auto 26px;
  color: var(--green);
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.25;
  text-align: center;
}

.section-title::before,
.section-title::after {
  box-shadow: 0 0 0 4px rgba(221, 230, 240, 0.9);
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), var(--accent));
}

.section-title::before {
  right: calc(100% + 18px);
}

.section-title::after {
  left: calc(100% + 18px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(27, 56, 91, 0.1);
  border-radius: 12px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.service-grid article {
  display: grid;
  grid-template-columns: 66px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 18px;
  min-height: 142px;
  padding: 22px 22px 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, background 0.18s ease;
}

.service-grid article:hover {
  background: #f0f4f8;
  transform: translateY(-1px);
}

.service-grid svg {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  color: var(--green);
  padding: 8px;
  border-radius: 12px;
  background: #dde6f0;
}

.service-grid h3 {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 21px;
}

.service-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.before-after {
  padding-top: 18px;
}

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

.ba-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.ba-card h3 {
  margin: 0;
  padding: 12px 12px 10px;
  text-align: center;
  font-size: 16px;
  color: var(--green);
  background: linear-gradient(180deg, #ffffff, #f0f4f8);
}

.ba-card img {
  display: block;
  width: min(100%, 250px);
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  image-rendering: auto;
}

.ba-card img.ba-image--ai {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.ba-pair {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 8px;
  align-items: center;
}

.ba-pair i {
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid var(--green);
}

.ba-photo {
  position: relative;
  min-height: 76px;
  overflow: hidden;
  border-radius: 5px;
  background-color: #d4d0c4;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.ba-photo span {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 3px 7px;
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 11px;
}

.ba-photo.after span {
  background: var(--green);
}

.grass.before { background: linear-gradient(135deg, #234d21, #72a344 50%, #234018); }
.grass.after { background: linear-gradient(135deg, #629a3d, #c7d57c 54%, #7da751); }
.wall.before { background: repeating-linear-gradient(0deg, #7e6c58 0 18px, #c9b89f 19px 21px), repeating-linear-gradient(90deg, transparent 0 44px, rgba(0,0,0,.28) 45px 47px); }
.wall.after { background: repeating-linear-gradient(0deg, #cdbca4 0 18px, #f1e6d3 19px 21px), repeating-linear-gradient(90deg, transparent 0 44px, rgba(255,255,255,.38) 45px 47px); }
.pipe.before { background: radial-gradient(circle at 36% 54%, #b48755 0 9%, transparent 10%), linear-gradient(90deg, #b8a08a, #79573b, #c8a579); }
.pipe.after { background: radial-gradient(circle at 36% 54%, #efe7d9 0 9%, transparent 10%), linear-gradient(90deg, #eadcc8, #b99068, #efe2cf); }
.roof.before { background: repeating-linear-gradient(120deg, #7b3421 0 16px, #cf8451 17px 28px); }
.roof.after { background: repeating-linear-gradient(120deg, #436887 0 16px, #9fb9cb 17px 28px); }
.stone.before { background: linear-gradient(120deg, #2a2d22, #6a664f 45%, #26251f); }
.stone.after { background: linear-gradient(120deg, #6c7b4f, #b6bd80 45%, #65704c); }
.caster.before { background: radial-gradient(circle at 38% 58%, #111 0 17%, #434345 18% 28%, transparent 29%), linear-gradient(135deg, #1f2025, #5a5b61); }
.caster.after { background: radial-gradient(circle at 38% 58%, #080808 0 12%, #707075 13% 24%, transparent 25%), linear-gradient(135deg, #2a2c31, #72747a); }
.bag.before { background: linear-gradient(145deg, #111, #2d2b28 68%, #916738); }
.bag.after { background: linear-gradient(145deg, #171717, #424038 68%, #c79752); }
.toilet.before { background: linear-gradient(105deg, #c7b8a5, #fff 44%, #8d7964); }
.toilet.after { background: linear-gradient(105deg, #e4ded4, #fff 44%, #c5b39e); }
.tile.before { background: repeating-linear-gradient(0deg, #45413b 0 22px, #6a6157 23px 25px), repeating-linear-gradient(90deg, transparent 0 34px, rgba(0,0,0,.32) 35px 37px); }
.tile.after { background: repeating-linear-gradient(0deg, #d6d3cc 0 22px, #f4f1ea 23px 25px), repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.5) 35px 37px); }
.pruning.before { background: linear-gradient(135deg, #214b20, #3d791c 46%, #122b14); }
.pruning.after { background: radial-gradient(circle at 70% 28%, #5d8c2d 0 20%, transparent 21%), linear-gradient(135deg, #7a9a4c, #d5c77e); }
.shower.before { background: linear-gradient(90deg, #d2cbc0, #f7f3e9 48%, #b6a692); }
.shower.after { background: linear-gradient(90deg, #ece8df, #ffffff 48%, #d5cbbd); }
.room.before { background: linear-gradient(135deg, #5a371d, #c0a37c 40%, #3e2719 78%); }
.room.after { background: linear-gradient(135deg, #d5c4ac, #f7eddc 42%, #9b845f 78%); }

.note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.split-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 18px clamp(16px, 4vw, 28px);
}

.panel {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 244, 248, 0.96));
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--green);
}

.voice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.voice-row article {
  position: relative;
  padding: 18px 16px 12px;
  border: 1px solid rgba(27, 56, 91, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.voice-row article::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #dde6f0;
}

.voice-row p {
  position: relative;
  min-height: 132px;
  margin: 0 0 12px;
  padding-top: 34px;
  font-size: 14px;
  line-height: 1.75;
}

.voice-row p::before {
  content: "“";
  position: absolute;
  top: -8px;
  left: 5px;
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 1;
}

.voice-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
}

.flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 48%;
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: rotate(45deg);
}

.flow-list b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  box-shadow: 0 8px 16px rgba(27, 56, 91, 0.18);
}

.flow-list svg {
  width: 38px;
  height: 38px;
  color: var(--green);
}

.flow-list strong {
  color: var(--green);
  font-size: 14px;
}

.flow-list span {
  font-size: 12px;
  line-height: 1.5;
}

.faq dl {
  margin: 0;
}

.faq dt {
  position: relative;
  margin-top: 10px;
  padding-left: 34px;
  color: var(--green);
  font-size: 16px;
}

.faq dt::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: -3px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green), var(--green-2));
  font-size: 13px;
}

.faq dd {
  margin: 4px 0 0;
  padding-left: 34px;
  color: #202929;
  font-size: 14px;
  line-height: 1.6;
}

.pet-section {
  display: grid;
  grid-template-columns: 38% 1fr 18%;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(90deg, #dde6f0, #ffffff);
  box-shadow: var(--shadow-soft);
}

.pet-photo {
  min-height: 155px;
  overflow: hidden;
}

.pet-photo img {
  display: block;
  width: min(100%, 760px);
  height: 100%;
  min-height: 155px;
  object-fit: cover;
}

.pet-copy {
  padding: 24px 0;
}

.pet-copy h2 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: clamp(25px, 3vw, 36px);
}

.pet-copy p {
  margin: 0 0 8px;
  line-height: 1.8;
}

.pet-copy strong {
  color: var(--green);
}

.dog-line {
  min-height: 110px;
  background:
    radial-gradient(circle at 36% 44%, transparent 0 15px, var(--green) 16px 17px, transparent 18px),
    linear-gradient(20deg, transparent 45%, var(--green) 46% 48%, transparent 49%) 48% 48% / 80px 48px no-repeat,
    linear-gradient(var(--green), var(--green)) 20% 74% / 44px 2px no-repeat,
    linear-gradient(var(--green), var(--green)) 70% 74% / 34px 2px no-repeat;
  opacity: 0.9;
}

.contact {
  padding: 34px clamp(16px, 4vw, 28px) 0;
  text-align: center;
}

.contact > p {
  margin: 0;
  color: var(--green);
  font-size: 19px;
}

.contact h2 {
  margin: 4px 0 22px;
  color: var(--green);
  font-size: clamp(26px, 3.5vw, 40px);
  text-wrap: balance;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  min-height: 118px;
  padding: 20px 28px;
  text-align: left;
  background: rgba(255, 255, 255, 0.96);
}

.contact-card,
.info-row a,
.social-row a {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-card:hover,
.info-row a:hover,
.social-row a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(27, 56, 91, 0.18);
}

.contact-card svg {
  grid-row: 1 / 4;
  width: 58px;
  height: 58px;
  color: var(--green);
}

.contact-card strong {
  color: var(--green);
  font-size: clamp(20px, 3vw, 31px);
  word-break: break-word;
}

.contact-card--email strong {
  display: block;
  font-size: clamp(12px, 1.4vw, 17px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.contact-card small,
.contact-card span {
  color: var(--green);
}

.contact-card--phone {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(135deg, var(--green), #3a6496);
}

.contact-card--phone svg,
.contact-card--phone span,
.contact-card--phone strong,
.contact-card--phone small {
  color: #fff;
}

.info-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: 14px;
  margin-top: 20px;
  text-align: left;
}

.info-row div,
.info-row a {
  padding: 12px 18px;
  border-left: 1px solid rgba(27, 56, 91, 0.12);
}

.info-row a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
  align-items: center;
  border: 1px solid rgba(27, 56, 91, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.info-row div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.info-row a svg {
  grid-row: 1 / 3;
  width: 28px;
  height: 28px;
  color: var(--green);
}

.info-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
}

.info-row span {
  font-size: 14px;
  line-height: 1.6;
}

.social-row {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.social-row a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 13px 20px;
  border: 1px solid rgba(27, 56, 91, 0.11);
  border-radius: 8px;
  color: var(--green);
  background: linear-gradient(180deg, #fff, #f0f4f8);
  box-shadow: var(--shadow);
}

.social-row svg {
  width: 26px;
  height: 26px;
}

footer {
  margin-top: 18px;
  padding: 14px;
  color: #fff;
  background: linear-gradient(90deg, #0d2744, var(--green), #2a5a8a);
  text-align: center;
  font-size: 14px;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 240px 1fr;
    min-height: 0;
  }

  .hero__photo {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .feature-row,
  .service-grid,
  .ba-grid,
  .split-sections,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pet-section {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pet-copy {
    padding: 24px;
  }

  .dog-line {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 78px;
  }

  .site-menu {
    top: 14px;
    right: 16px;
  }

  .menu-button {
    width: 64px;
    height: 64px;
  }

  .menu-panel {
    width: min(220px, calc(100vw - 32px));
  }

  .menu-button span {
    width: 25px;
    height: 3px;
  }

  .menu-button small {
    font-size: 9px;
  }

  .hero__inner,
  .feature-row,
  .service-grid,
  .ba-grid,
  .split-sections,
  .contact-grid,
  .info-row {
    grid-template-columns: 1fr;
  }

  .logo-mark {
    justify-self: center;
    max-width: 275px;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy p:last-child {
    margin: 0 auto;
  }

  .hero__photo {
    min-height: 190px;
  }

  .feature-card {
    min-height: 0;
    padding: 18px;
  }

  .feature-card svg {
    width: 56px;
    height: 56px;
  }

  .section-title::before,
  .section-title::after {
    display: none;
  }

  .service-grid {
    border-left: 0;
  }

  .service-grid article {
    grid-template-columns: 52px 1fr;
    border-left: 1px solid var(--line);
  }

  .ba-pair {
    grid-template-columns: 1fr 22px 1fr;
  }

  .ba-photo {
    min-height: 94px;
  }

  .check-list,
  .voice-row,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .flow-list li {
    grid-template-columns: 32px 46px 1fr;
    justify-items: start;
    text-align: left;
  }

  .flow-list li:not(:last-child)::after {
    display: none;
  }

  .flow-list span {
    grid-column: 3;
  }

  .contact-card {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .contact-card svg {
    width: 42px;
    height: 42px;
  }
}
