:root {
  --main: #008d4f;
  --light: #36b77b;
  --point: #fff200;
  --font: #252525;
  --muted: #666;
  --line: #e4e4e4;
  --wrap: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--font);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.55;
  background: #fff;
}

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

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

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

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

.site-header.clone {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(4px);
}

.site-header.clone.is-scrolled {
  background: rgba(0, 0, 0, 0.78);
}

.header-inner {
  width: min(1680px, calc(100% - 80px));
  min-height: 112px;
  display: grid;
  grid-template-columns: 290px minmax(560px, 1fr) 460px;
  align-items: center;
  gap: 24px;
}

.logo img {
  width: 270px;
  height: auto;
}

.clone-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}

.header-number img {
  width: 442px;
  margin-left: auto;
}

.mobile-head {
  display: none;
  height: 64px;
  grid-template-columns: 64px 1fr 64px;
  align-items: center;
  background: #fff;
}

.mobile-call,
.mobile-menu {
  height: 64px;
  display: grid;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--main);
}

.mobile-menu {
  color: var(--main);
  background: #fff;
  border-left: 1px solid #eee;
}

.mobile-logo img {
  width: 200px;
  margin: 0 auto;
}

.hamburger {
  width: 28px;
  display: grid;
  gap: 5px;
}

.hamburger span {
  display: block;
  height: 3px;
  background: var(--main);
}

.clone-hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  color: #fff;
  background: #222;
}

.hwangso-preview-hero {
  background: #111;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.slide-shade,
.hwangso-hero-image,
.hwangso-hero-shade {
  position: absolute;
  inset: 0;
}

.hwangso-hero-image,
.hwangso-hero-shade {
  width: 100%;
  height: 100%;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 15s infinite;
}

.hero-slide:first-child {
  opacity: 1;
}

.hero-slide:nth-child(2) {
  animation-delay: 5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 10s;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-grapple img {
  object-position: center;
}

.hero-slide-truck img {
  object-position: 62% center;
}

.hero-slide-estate img {
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.hwangso-hero-image {
  object-fit: cover;
  object-position: center;
}

.slide-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12));
}

.hwangso-hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 19, 14, 0.86) 0%, rgba(7, 19, 14, 0.62) 44%, rgba(7, 19, 14, 0.12) 76%),
    linear-gradient(0deg, rgba(7, 19, 14, 0.5), rgba(7, 19, 14, 0) 48%);
}

@keyframes heroFade {
  0%, 28% { opacity: 1; }
  36%, 92% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes heroTextFade {
  0%, 30% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  31%, 96% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.hero-copy-stack {
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-copy-item {
  position: absolute;
  top: 230px;
  left: 0;
  right: 0;
  max-width: 760px;
  opacity: 0;
  visibility: hidden;
  animation: heroTextFade 15s infinite;
}

.hero-copy-item:first-child {
  opacity: 1;
  visibility: visible;
}

.hero-copy-item:nth-child(2) {
  animation-delay: 5s;
}

.hero-copy-item:nth-child(3) {
  animation-delay: 10s;
}

.hwangso-preview-hero .hero-copy-stack {
  max-width: 1120px;
}

.hero-copy-clone p {
  margin: 0 0 28px;
  font-size: 18px;
}

.hero-copy-clone strong {
  color: var(--point);
}

.hero-copy-clone h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.22;
  letter-spacing: 0;
}

.hwangso-preview-hero .hero-copy-clone h1 {
  max-width: 1060px;
  font-size: 30px;
  line-height: 1.14;
}

.hero-copy-clone .sub {
  margin-top: 24px;
  font-size: 18px;
}

.hero-copy-clone .sub b {
  color: var(--point);
}

.hero-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  backdrop-filter: blur(3px);
}

.quick-consult {
  position: relative;
  z-index: 5;
  margin-top: -232px;
  padding-bottom: 44px;
}

.consult-box {
  border-radius: 8px;
  overflow: hidden;
  background: var(--main);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.consult-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding: 14px 22px 10px;
  color: #fff;
}

.consult-title h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
}

.consult-title p {
  margin: 0;
}

.consult-title b {
  font-size: clamp(22px, 2.5vw, 34px);
}

.consult-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr auto;
  gap: 10px;
  padding: 14px;
  background: #fff;
}

.consult-form label {
  display: grid;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.consult-form input,
.consult-form select {
  min-height: 38px;
  border: 1px solid var(--line);
  padding: 0 10px;
  background: #fff;
}

.consult-form .submit {
  align-self: end;
  min-height: 38px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  font-weight: 900;
  background: var(--main);
  cursor: pointer;
}

.consult-form .form-status {
  grid-column: 1 / -1;
  min-height: 0;
  margin: 0;
  color: var(--main);
  font-size: 13px;
  font-weight: 800;
}

.consult-form .form-status:empty {
  display: none;
}

.service-section {
  padding: 92px 0 98px;
  text-align: center;
  background:
    linear-gradient(rgba(26, 91, 48, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 91, 48, 0.04) 1px, transparent 1px),
    #f7f3e7;
  background-size: 36px 36px;
}

.section-title h2 {
  margin: 0;
  color: var(--main);
  font-size: clamp(28px, 3.7vw, 52px);
  line-height: 1.24;
}

.section-title p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 18px;
}

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

.service-cards article {
  position: relative;
  overflow: visible;
  padding: 10px 10px 0;
  border: 8px solid #fff9e9;
  border-radius: 4px;
  background: #fffdf5;
  box-shadow:
    inset 0 0 0 1px rgba(47, 89, 56, 0.12),
    0 16px 28px rgba(55, 48, 34, 0.13);
}

.service-cards article::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(38, 73, 45, 0.18);
  border-radius: 4px;
  pointer-events: none;
}

.service-cards img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 2px;
}

.service-cards h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0;
  padding: 12px 8px 14px;
  color: #173624;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.12;
}

.number-section {
  position: relative;
  padding: 84px 0;
  color: #fff;
  background: #edf8ee;
  overflow: hidden;
}

.number-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 252, 244, 0.9) 0%, rgba(245, 252, 244, 0.58) 45%, rgba(245, 252, 244, 0.18) 100%),
    url("../img/hwangso-number-bg-wide.png") center/cover no-repeat;
  opacity: 1;
}

.number-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.number-grid article {
  min-height: 118px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(12, 35, 24, 0.72);
  box-shadow: 0 14px 30px rgba(5, 38, 24, 0.16);
  backdrop-filter: blur(3px);
}

.number-grid b {
  display: block;
  color: var(--point);
  font-size: 34px;
}

.number-grid span {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 800;
}

.worker-guide {
  padding: 72px 0 58px;
  background: #f5f8f1;
  overflow: hidden;
}

.worker-guide-inner {
  max-width: 980px;
  text-align: center;
}

.worker-guide-copy p {
  margin: 0 0 12px;
  color: var(--main);
  font-size: 18px;
  font-weight: 900;
}

.worker-guide-copy h2 {
  margin: 0;
  color: #17231d;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
}

.worker-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.worker-steps article {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  padding: 14px 12px 14px 82px;
  border: 1px solid rgba(0, 110, 65, 0.16);
  border-radius: 8px;
  background: #fff;
}

.worker-steps img {
  position: absolute;
  left: 10px;
  bottom: -4px;
  width: 62px;
  height: 86px;
  object-fit: contain;
  object-position: bottom center;
}

.worker-steps b {
  display: block;
  color: var(--main);
  font-size: 14px;
}

.worker-steps span {
  display: block;
  margin-top: 8px;
  color: #1d2a23;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.blog-case-section {
  padding: 86px 0 94px;
  background: #fff;
}

.blog-case-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.blog-case-head h2 {
  margin: 0;
  color: #f1a13a;
  font-size: clamp(34px, 4.3vw, 60px);
  line-height: 1.15;
  letter-spacing: 0;
}

.blog-case-head p {
  margin: 10px 0 0;
  color: #5a5a5a;
  font-size: 20px;
  font-weight: 800;
}

.blog-case-head a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 2px solid #f1a13a;
  border-radius: 999px;
  color: #e58f2b;
  font-size: 15px;
  font-weight: 900;
}

.blog-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.blog-case-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 132px;
  padding: 22px 24px;
  border: 1px solid #e6e8eb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 30, 40, 0.04);
}

.blog-case-card strong {
  overflow: hidden;
  color: #555;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.35;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog-case-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 14px 0 18px;
  color: #9a9a9a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.blog-case-card span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.blog-case-card time {
  color: #bdbdbd;
  font-size: 19px;
  font-weight: 800;
}

.blog-case-card b {
  overflow: hidden;
  color: #f1a13a;
  font-size: 17px;
  font-weight: 900;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-section-clone {
  padding: 90px 0;
  background: #f8f8f8;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.case-grid article {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.case-grid img {
  width: 100%;
  aspect-ratio: 1 / .78;
  object-fit: cover;
}

.case-grid h3 {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 18px;
}

.case-grid p {
  min-height: 74px;
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-image-band {
  position: relative;
  padding: 86px 0;
  color: #fff;
  background: var(--main);
  overflow: hidden;
}

.contact-image-band .wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.contact-image-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.2;
}

.contact-image-band p {
  font-size: 20px;
}

.contact-image-band .truck {
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.25));
}

.review-section {
  position: relative;
  padding: 92px 0 106px;
  background:
    linear-gradient(rgba(20, 92, 48, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 92, 48, 0.05) 1px, transparent 1px),
    #f5f1df;
  background-size: 34px 34px;
  overflow: hidden;
}

.review-section::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 2px dashed rgba(22, 89, 48, 0.18);
  pointer-events: none;
}

.review-head {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.review-head p {
  margin: 0 0 12px;
  color: #2d8f50;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 900;
}

.review-head h2 {
  margin: 0;
  color: #18261d;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.review-head span {
  display: block;
  margin-top: 18px;
  color: #526154;
  font-size: 20px;
  font-weight: 800;
}

.review-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 58px;
  align-items: end;
  margin-top: 54px;
  position: relative;
  z-index: 1;
}

.review-photo-stack {
  position: relative;
  min-height: 548px;
}

.review-photo {
  position: absolute;
  margin: 0;
  overflow: visible;
  padding: 14px 14px 0;
  border: 0;
  border-radius: 2px;
  background: #fffdf4;
  box-shadow: 0 22px 36px rgba(60, 50, 34, 0.2);
}

.review-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -18px;
  width: 108px;
  height: 28px;
  border-radius: 2px;
  transform: translateX(-50%) rotate(-2deg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.18)),
    rgba(231, 174, 73, 0.42);
  box-shadow: 0 4px 8px rgba(82, 58, 24, 0.08);
}

.review-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
  border-radius: 2px;
}

.review-photo figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 16px 18px;
  background: #fffdf4;
  color: #26362e;
}

.review-photo figcaption b {
  font-family: var(--font-display);
  font-size: 26px;
}

.review-photo figcaption span {
  color: #e38d15;
  font-weight: 900;
}

.review-photo-main {
  left: 0;
  top: 34px;
  width: 62%;
  transform: rotate(-3deg);
}

.review-photo-sub {
  right: 0;
  bottom: 14px;
  width: 54%;
  transform: rotate(4deg);
}

.review-agent-panel {
  display: grid;
  gap: 22px;
  align-self: center;
}

.agent-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 2px;
  background: #ffe96b;
  color: #1d2b22;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 14px 22px rgba(70, 58, 28, 0.14);
  transform: rotate(-2deg);
}

.review-agent-panel article {
  position: relative;
  display: block;
  padding: 28px 30px 26px;
  border: 0;
  border-radius: 2px;
  background: #fffbea;
  box-shadow: 0 18px 28px rgba(60, 50, 34, 0.16);
}

.review-agent-panel article:nth-child(2) {
  transform: rotate(1.2deg);
}

.review-agent-panel article:nth-child(3) {
  background: #f0f8e8;
  transform: rotate(-1.1deg);
}

.review-agent-panel article:nth-child(4) {
  background: #fff3d5;
  transform: rotate(1.4deg);
}

.review-agent-panel article::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 30px;
  width: 64px;
  height: 22px;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.16)),
    rgba(231, 174, 73, 0.36);
  transform: rotate(-2deg);
}

.review-agent-panel article b {
  display: block;
  margin-top: 16px;
  color: #f3a21e;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.review-comment-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 16px;
  align-items: baseline;
}

.review-comment-meta strong {
  color: #1d2b22;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.review-comment-meta span {
  color: #2aba66;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.review-comment-meta time {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: #e38d15;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
}

.review-agent-panel article p {
  margin: 10px 0 0;
  color: #526158;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.partners {
  padding: 82px 0;
  text-align: center;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.partner-grid div {
  display: grid;
  place-items: center;
  min-height: 96px;
  border: 1px solid var(--line);
  padding: 18px;
}

.partner-grid img {
  max-height: 46px;
  width: auto;
}

.clone-footer {
  padding: 54px 0;
  color: #ddd;
  background: #222;
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 34px;
  align-items: center;
}

.footer-inner img {
  width: 260px;
}

.footer-inner p {
  margin: 4px 0;
}

.footer-inner p:nth-child(n+3) {
  color: #aaa;
  font-size: 13px;
}

.fixed-bottom {
  position: fixed;
  z-index: 60;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
}

.fixed-bottom a {
  min-height: 54px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: var(--main);
}

.fixed-bottom a:nth-child(2) {
  background: #f5b300;
  color: #171717;
}

.fixed-bottom a:nth-child(3) {
  background: #2aa75f;
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 230px minmax(0, 1fr) 390px;
    gap: 14px;
  }

  .logo img {
    width: 230px;
  }

  .clone-nav {
    gap: 14px;
    font-size: 16px;
  }

  .header-number img {
    width: 390px;
  }

  .clone-hero {
    min-height: 680px;
  }

  .hero-copy-item {
    top: 188px;
    max-width: min(680px, 86vw);
  }

  .service-cards,
  .case-grid,
  .blog-case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .consult-form .submit {
    grid-column: span 2;
  }

  .review-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .review-photo-stack {
    min-height: 470px;
  }
}

@media (max-width: 900px) {
  .site-header.clone {
    background: transparent;
    border-bottom: 0;
  }

  .header-inner {
    display: none;
  }

  .mobile-head {
    display: grid;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 54px;
  }

  .clone-hero {
    min-height: 520px;
  }

  .hero-copy-stack {
    text-align: left;
  }

  .hero-copy-item {
    top: 96px;
    max-width: calc(100vw - 40px);
  }

  .hero-copy-clone p {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .hero-copy-clone h1 {
    font-size: 30px;
    line-height: 1.22;
  }

  .hero-copy-clone .sub {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.45;
  }

  .hero-service-tags {
    justify-content: flex-start;
  }

  .hero-service-tags span {
    min-height: 34px;
    padding: 0 13px;
    font-size: 14px;
  }

  .quick-consult {
    margin-top: -42px;
    padding-bottom: 28px;
  }

  .consult-title {
    display: block;
    padding: 12px 16px 8px;
    text-align: center;
  }

  .consult-title p {
    display: none;
  }

  .consult-form,
  .contact-image-band .wrap,
  .review-row,
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .consult-form {
    gap: 8px;
    padding: 12px;
  }

  .consult-form .submit {
    grid-column: span 2;
  }

  .worker-guide {
    padding: 52px 0 42px;
  }

  .blog-case-section {
    padding: 64px 0 70px;
  }

  .blog-case-head {
    display: block;
  }

  .blog-case-head h2 {
    font-size: 36px;
  }

  .blog-case-head p {
    font-size: 17px;
  }

  .blog-case-head a {
    margin-top: 18px;
  }

  .worker-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-image-band .wrap,
  .review-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .review-section {
    padding: 68px 0 74px;
  }

  .review-head h2 {
    font-size: 34px;
  }

  .review-head span {
    font-size: 17px;
  }

  .review-photo-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .review-photo,
  .review-photo-main,
  .review-photo-sub {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .review-agent-panel article {
    padding: 22px 20px;
  }

  .review-agent-panel article b {
    font-size: 27px;
  }

  .review-comment-meta {
    display: block;
  }

  .review-comment-meta strong {
    display: block;
    font-size: 22px;
  }

  .review-comment-meta span,
  .review-comment-meta time {
    display: inline-block;
    margin-top: 8px;
    margin-right: 12px;
    font-size: 17px;
  }

  .review-agent-panel article p {
    font-size: 15px;
  }

  .consult-form label {
    gap: 2px;
    font-size: 12px;
  }

  .consult-form input,
  .consult-form select,
  .consult-form .submit {
    min-height: 34px;
    font-size: 13px;
  }

  .service-cards,
  .case-grid,
  .blog-case-grid,
  .number-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-image-band {
    text-align: center;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-inner img {
    margin: 0 auto;
  }

  .fixed-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .service-cards,
  .case-grid,
  .blog-case-grid,
  .number-grid,
  .worker-steps,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .blog-case-grid {
    gap: 14px;
    margin-top: 32px;
  }

  .blog-case-card {
    min-height: 118px;
    padding: 18px 20px;
    border-radius: 18px;
  }

  .worker-guide-copy h2 {
    font-size: 27px;
  }

  .review-row {
    gap: 28px;
    margin-top: 34px;
  }

  .review-photo {
    border-width: 8px;
  }

  .review-photo figcaption {
    display: block;
    min-height: 0;
    padding: 12px 14px;
  }

  .review-photo figcaption b {
    display: block;
    font-size: 21px;
  }

  .review-photo figcaption span {
    display: block;
    margin-top: 4px;
  }

}
