@charset "UTF-8";
:root {
  --color-gold-primary: #f5b52e;
  --color-gold-secondary: #ed9400;
  --color-gold-soft: #ffd873;
  --color-cream: #fff8e7;
  --color-cream-light: #fff3cf;
  --color-text: #4c4741;
  --color-text-muted: #756f68;
  --color-line-green: #4eb91a;
  --color-line-green-light: #7bd13b;
  --color-border-gold: #f4b82f;
  --color-footer-gradient-start: #eaa13b;
  --color-footer-gradient-mid: #ffd777;
  --color-footer-gradient-end: #f0a23b;
  --color-white: #ffffff;
  --gold: var(--color-gold-primary);
  --gold-deep: var(--color-gold-secondary);
  --gold-soft: var(--color-gold-soft);
  --cream: var(--color-cream);
  --cream-2: var(--color-cream-light);
  --ink: var(--color-text);
  --muted: var(--color-text-muted);
  --green: var(--color-line-green);
  --line: #f7cf74;
  --white: var(--color-white);
  --shadow: 0 12px 34px rgba(177, 121, 19, 0.13);
  --container: 1600px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body,
html,
img {
  max-width: 100%;
}
body,
html {
  overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  font-family:
    "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  background: #fff;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
main {
  overflow: hidden;
}
img {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
.container {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
}
.section {
  position: relative;
  padding: 90px 0;
}
.section-heading {
  margin: 0 auto 55px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: #4b4742;
  font-size: clamp(28px, 2.1vw, 42px);
  letter-spacing: 0.07em;
  line-height: 1.25;
}
.section-heading .en {
  display: block;
  margin-top: 3px;
  color: var(--gold-deep);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.section-heading p {
  margin: 17px auto 0;
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
}
.btn,
.desktop-nav .nav-dropdown > button,
.desktop-nav > a {
  display: inline-flex;
  align-items: center;
  border: 0;
  font-weight: 700;
}
.btn {
  min-height: 47px;
  justify-content: center;
  gap: 9px;
  padding: 10px 30px;
  border-radius: 999px;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 18px rgba(196, 122, 0, 0.18);
}
.btn-gold {
  color: #fff;
  background: linear-gradient(90deg, #f5a000, #ff9d10);
}
.btn-line {
  margin-top: 22px;
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--color-line-green),
    var(--color-line-green-light)
  );
}
.line-bubble {
  display: inline-block;
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
  vertical-align: middle;
}
.site-header {
  position: absolute;
  z-index: 50;
  top: 35px;
  left: 0;
  width: 100%;
}
.header-inner {
  width: min(calc(100% - 170px), 1660px);
  margin: 0 auto;
}
.brand {
  display: block;
  width: 257px;
  margin: 0 auto 22px;
}
.desktop-nav {
  display: flex;
  height: 62px;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 2.8vw, 54px);
  padding: 0 48px;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(
    90deg,
    #fef8e2 0,
    #ffd571 8%,
    #e3971f 28%,
    #e3971f 72%,
    #ffd571 92%,
    #fef8e2 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.desktop-nav .nav-dropdown > button,
.desktop-nav > a {
  height: 100%;
  gap: 7px;
  padding: 0;
  color: #fff;
  background: 0 0;
  font-size: 16px;
  white-space: nowrap;
  text-shadow: 0 1px 1px rgba(150, 80, 0, 0.2);
  position: relative;
}
.desktop-nav .nav-dropdown > button::after,
.desktop-nav > a::after {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 2px;
  content: "";
  opacity: 0;
  background: #fff;
  transform: scaleX(0.4);
  transition: 0.2s;
}
.desktop-nav .nav-dropdown > button.active::after,
.desktop-nav .nav-dropdown > button:hover::after,
.desktop-nav > a.active::after,
.desktop-nav > a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.desktop-nav img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.nav-dropdown {
  position: relative;
  height: 100%;
}
.dropdown-menu {
  position: absolute;
  z-index: 5;
  top: calc(100% - 4px);
  left: 50%;
  width: 190px;
  overflow: hidden;
  border: 1px solid #f4c056;
  border-radius: 10px;
  opacity: 0;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translate(-50%, 12px);
  visibility: hidden;
  transition: 0.2s ease;
}
.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  color: #4f4a44;
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}
.dropdown-menu a:hover {
  color: #d97900;
  background: #fff8e8;
}
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}
.mobile-drawer,
.mobile-menu-overlay,
.mobile-menu-toggle {
  display: none;
}
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: #fff8e8;
}
.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 240px;
  content: "";
  background: url(../images/00-hp/hero_wave_gold_ref.svg?v=25) center bottom/100%
    100%no-repeat;
  pointer-events: none;
}
.hero-bg {
  background: url(../images/00-hp/banner_bg.jpg) center top/cover no-repeat;
}
.hero-bg,
.hero-slide,
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0s linear 0.8s;
}
.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.8s ease;
}
.hero-container {
  display: grid;
  width: min(calc(100% - 120px), 1680px);
  height: 100%;
  margin: 0 auto;
  padding-top: 175px;
  grid-template-columns: 54% minmax(0, 1fr);
  align-items: center;
}
.hero-visual {
  align-self: end;
  padding-bottom: 70px;
}
.hero-visual img {
  width: min(100%, 890px);
  margin-left: -10px;
}
.hero-copy {
  align-self: center;
  padding: 38px 0 45px 20px;
}
.hero-copy h1 {
  margin: 0 0 12px;
  color: #4c4640;
  font-size: clamp(34px, 2.6vw, 50px);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.32;
  text-wrap: balance;
}
.hero-copy p {
  margin: 0;
  color: #5e5750;
  font-size: clamp(19px, 1.45vw, 28px);
}
.hero-copy strong {
  display: block;
  margin-top: 3px;
  color: #ee8900;
  font-size: clamp(18px, 1.35vw, 25px);
}
.hero-dots,
.home-page .home-about::after {
  display: none;
}
.hero-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid #e8a020;
  border-radius: 50%;
  background: 0 0;
}
.hero-dots button.active {
  background: #ec9a0a;
}
.desktop-line-tab {
  position: fixed;
  z-index: 45;
  top: 42%;
  left: 24px;
  width: 105px;
  filter: drop-shadow(0 6px 8px rgba(75, 130, 27, 0.18));
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.desktop-line-tab.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.desktop-line-tab img {
  width: 100%;
}
.services-section {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 74px 0 95px;
  background: linear-gradient(
    180deg,
    #fff0c7 0,
    #fff2d0 5%,
    #fff5dc 12%,
    #fff8e8 25%,
    #fffaf1 42%,
    #fffdf8 65%,
    #fff 100%
  );
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
}
.service-card {
  position: relative;
  min-height: 342px;
  padding: 35px 24px 25px;
  border: 2px solid transparent;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 7px 18px rgba(174, 112, 0, 0.07);
  text-align: center;
  transition: 0.24s ease;
}
.service-card:hover {
  border-color: #f4b82f;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.service-card img,
.trust-item img {
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.trust-item img {
  width: 70px;
  height: 70px;
  margin: 0 auto 10px;
}
.service-card h3 {
  margin: 0 0 13px;
  color: #494540;
  font-size: 22px;
}
.service-card p {
  min-height: 75px;
  margin: 0 0 18px;
  color: #756f68;
  font-size: 15px;
  line-height: 1.7;
  text-wrap: balance;
}
.service-card .btn {
  min-height: 39px;
  padding: 8px 24px;
  font-size: 14px;
}
.home-about {
  min-height: 650px;
  padding: 90px 0 55px;
  background: #fff;
}
.home-about::after {
  position: absolute;
  bottom: -40px;
  left: -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  content: "";
  opacity: 0.35;
  background: radial-gradient(circle, #ffd451 0 2px, transparent 3px) 0 0/20px
    20px;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 51% minmax(0, 1fr);
  align-items: center;
}
.home-about-copy {
  align-self: start;
  padding-left: 45px;
}
.home-about-copy h2 {
  margin: 0 0 3px;
  color: #4d4944;
  font-size: 30px;
}
.home-about-copy h3 {
  margin: 0 0 18px;
  color: #ed8e00;
  font-size: 23px;
}
.home-about-copy p {
  max-width: 760px;
  color: #68625c;
  font-size: 16px;
}
.trust-row {
  display: flex;
  gap: 55px;
  margin: 36px 0 30px;
}
.trust-item {
  position: relative;
  min-width: 118px;
  color: #ec8b00;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.trust-item + .trust-item::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: -28px;
  width: 1px;
  content: "";
  background: #f0dcbb;
}
.home-about-visual img {
  width: min(100%, 760px);
  margin: 0 auto;
  display: block;
}
@media (min-width: 1281px) {
  .home-about-visual img {
    width: min(calc(100% + max(40px, (100vw - var(--container))/2)), 1000px);
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    -webkit-mask-image: linear-gradient(
      to right,
      #000 0,
      #000 89%,
      rgba(0, 0, 0, 0.72) 93%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      #000 0,
      #000 89%,
      rgba(0, 0, 0, 0.72) 93%,
      transparent 100%
    );
  }
}
.cases-preview {
  position: relative;
  overflow: hidden;
  padding: 85px 0 95px;
  background: #fff;
}
.cases-preview::after,
.cases-preview::before {
  position: absolute;
  bottom: 0;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.cases-preview::before {
  left: 0;
  width: 350px;
  height: 680px;
  background-image: url(../images/00-hp/case_bg_l.png);
  background-position: left bottom;
}
.cases-preview::after {
  right: 0;
  width: 430px;
  height: 848px;
  background-image: url(../images/00-hp/case_bg_r.png);
  background-position: right bottom;
}
.case-heading-deco {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.case-heading-deco img {
  width: 210px;
}
.cases-preview .section-heading p {
  margin-top: 14px;
}
.cases-preview .section-heading p strong {
  display: block;
  margin-bottom: 4px;
  color: #4b4742;
  font-size: 26px;
  font-weight: 700;
}
.cases-preview .case-heading-accent {
  display: block;
  color: #ec8b00;
}
.case-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 68px 52px;
}
.case-card {
  padding: 0 34px 34px;
  border: 2px solid #f2c687;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
}
.case-card h3 {
  margin: 0;
  padding: 23px 8px 18px;
  border-bottom: 1px solid #ecd79f;
  color: #4b4742;
  font-size: 20px;
  text-align: center;
  text-wrap: balance;
}
.case-card h3::before {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border: 0;
  content: "$";
  background: radial-gradient(
    circle at 32% 28%,
    #ffe28a,
    #f6b429 55%,
    #ee9a00 100%
  );
  font-family: Arial, sans-serif;
  font-size: 15px;
  vertical-align: -2px;
}
.case-card .amount {
  color: #f39a00;
  font-size: 1.2em;
}
.case-card p {
  margin: 24px 0 0;
  color: #68625c;
  font-size: 15px;
  line-height: 2;
}
.cases-page {
  padding: 80px 0 120px;
}
.cases-intro {
  display: grid;
  max-width: 1080px;
  margin: 0 auto 55px;
  grid-template-columns: 310px 1fr;
  align-items: center;
}
.cases-intro img {
  width: 280px;
}
.cases-intro p {
  color: #6a645f;
  font-size: 17px;
  line-height: 2.1;
}
.cases-count {
  margin: 0 0 18px;
  color: #e08e1c;
  font-size: 15px;
  font-weight: 700;
  text-align: right;
}
.case-actions {
  margin-top: 38px;
  text-align: center;
}
.home-faq-teaser {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: #fff;
}
.home-faq-teaser::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  height: 480px;
  content: "";
  background: url(../images/00-hp/case_bg_r.png) right top/auto 100%no-repeat;
  opacity: 0.9;
  pointer-events: none;
}
.home-faq-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.home-faq-copy h2 {
  margin: 0 0 15px;
  font-size: 30px;
}
.home-faq-copy p {
  color: #68625c;
  font-size: 16px;
  line-height: 2;
}
.home-faq-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.home-faq-visual,
.process-strip {
  position: relative;
  min-height: 300px;
}
.process-strip {
  min-height: 630px;
  padding: 95px 0 105px;
  background:
    linear-gradient(180deg, #fff 0, rgba(255, 255, 255, 0) 130px),
    url(../images/00-hp/step_bg.jpg) center/cover no-repeat;
}
.home-faq-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 481px;
  margin: 0 auto;
  display: block;
}
.process-strip::after {
  position: absolute;
  right: -8%;
  bottom: -60px;
  width: 56%;
  height: 110px;
  border-radius: 50%0 0 0/100%0 0 0;
  content: "";
  background: rgba(255, 255, 255, 0.45);
}
.process-strip-grid {
  display: grid;
  grid-template-columns: 35% minmax(0, 1fr);
  align-items: end;
}
.process-strip-person img {
  width: min(100%, 620px);
  margin-left: -70px;
}
.process-strip-content h2 {
  margin: 0 0 30px;
  color: #4d4944;
  font-size: 31px;
}
.process-strip-content h2 strong {
  color: #f18a00;
}
.process-strip-content h2 .highlight-num {
  color: #f18a00;
  font-size: 1.3em;
  font-weight: 700;
}
.process-strip-content > p {
  margin: 0 0 65px;
  color: #655e58;
}
.process-strip-note {
  margin-top: 28px;
  text-align: center;
}
.process-strip-note p {
  margin: 0 0 8px;
  color: #655e58;
  font-size: 15px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-step-card {
  position: relative;
  min-height: 205px;
  padding: 38px 15px 18px;
  border: 2px solid #f3a817;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}
.case-card h3::before,
.process-step-card .number {
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
}
.process-step-card .number {
  position: absolute;
  top: -18px;
  left: 50%;
  display: flex;
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  background: linear-gradient(135deg, #f7ce8a 0, #e8952a 100%);
  box-shadow: 0 3px 6px rgba(180, 110, 20, 0.4);
  font-size: 20px;
  font-weight: 800;
  transform: translateX(-50%);
}
.process-step-card img {
  width: 66px;
  height: 66px;
  margin: 0 auto 12px;
  object-fit: contain;
}
.process-step-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}
.inner-title {
  padding: 30px 0 0;
}
.service-detail {
  position: relative;
  padding: 60px 0 100px;
}
.service-detail::before {
  position: absolute;
  top: 150px;
  left: 0;
  width: 340px;
  aspect-ratio: 323/546;
  content: "";
  background: url(../images/02/02bg1.png) left top/contain no-repeat;
  opacity: 0.9;
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 43% minmax(0, 1fr);
  align-items: center;
  gap: 35px;
}
.service-main-image img {
  width: min(100%, 650px);
  margin: 0 auto;
}
.service-copy .lead {
  margin: 0 0 16px;
  color: #ef8e00;
  font-size: 22px;
  font-weight: 800;
}
.about-copy p {
  font-size: 16px;
}
.service-copy > p {
  color: #655f59;
  font-size: 16px;
}
.info-block {
  margin-top: 24px;
}
.info-block h3 {
  display: flex;
  height: 46px;
  margin: 0 0 13px;
  align-items: center;
  gap: 10px;
  padding: 0 17px;
  color: #4f4943;
  background: linear-gradient(90deg, #fff1ca, rgba(255, 248, 229, 0.15));
  font-size: 21px;
}
.info-block h3 img {
  width: 29px;
  height: 29px;
}
.check-list,
.document-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list li,
.document-list li {
  margin: 7px 0;
  color: #625d57;
}
.check-list li::before {
  margin-right: 8px;
  content: "✓";
  color: #f29b00;
  font-weight: 800;
}
.document-list {
  counter-reset: docs;
}
.document-list li {
  counter-increment: docs;
}
.document-list li::before {
  margin-right: 5px;
  content: counter(docs) ".";
}
.service-process-band {
  position: relative;
  padding: 85px 0 55px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.88),
      rgba(255, 246, 206, 0.72)
    ),
    url(../images/02/sun-shines-through-clouds.jpg) center/cover no-repeat;
}
.service-process-content {
  width: 70%;
}
.service-process-content .process-steps {
  margin-top: 35px;
}
.service-process-person {
  position: absolute;
  right: 4%;
  bottom: -5px;
  width: 33%;
  max-width: 620px;
}
.more-services {
  padding: 75px 0 120px;
  background:
    radial-gradient(circle, rgba(247, 188, 55, 0.24) 0 2px, transparent 3px) 0
      0/25px 25px,
    #fff;
}
.more-services .service-grid {
  gap: 22px;
}
.more-services .service-card {
  min-height: 315px;
}
.about-main {
  position: relative;
  padding: 70px 0 50px;
}
.about-main::after {
  position: absolute;
  right: 4%;
  bottom: 10%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  content: "";
  background: repeating-linear-gradient(
    135deg,
    rgba(248, 213, 115, 0.23) 0 7px,
    transparent 7px 20px
  );
  z-index: -1;
}
.about-grid {
  display: grid;
  grid-template-columns: 54% minmax(0, 1fr);
  gap: 65px;
  align-items: start;
}
.about-copy .en-title {
  margin: 0 0 15px;
  color: #f8dfae;
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 3.2vw, 62px);
  font-weight: 700;
  letter-spacing: 0.11em;
}
.about-copy h3 {
  margin: 0 0 15px;
  color: #ee8e00;
  font-size: 24px;
}
.about-copy h4 {
  margin: 28px 0 8px;
  font-size: 22px;
}
.about-copy p {
  color: #66615b;
}
.about-photo img {
  width: 100%;
}
.about-trust {
  display: flex;
  gap: 42px;
  margin-top: 60px;
}
.about-trust-item {
  display: flex;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 12px solid #f1b02b;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}
.about-trust-item img {
  width: 116px;
  height: 116px;
  margin-bottom: 15px;
  object-fit: contain;
}
.about-trust-item strong {
  color: #ee8e00;
  font-size: 27px;
}
.consult-section {
  padding: 70px 0 20px;
  overflow: hidden;
}
.consult-grid {
  display: grid;
  grid-template-columns: 45% minmax(0, 1fr);
  align-items: center;
}
.consult-grid,
.consult-photo {
  position: relative;
}
.consult-photo::before {
  position: absolute;
  top: 50%;
  left: 38%;
  z-index: 0;
  width: 92%;
  aspect-ratio: 958/1140;
  content: "";
  background: url(../images/01/01pic_bg.png) center/contain no-repeat;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.consult-photo > img:first-child {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  margin: 0 auto;
}
.consult-deco {
  position: absolute;
  width: 70px;
  pointer-events: none;
}
.consult-deco-right {
  right: clamp(20px, 2.1vw, 40px);
  bottom: -40px;
  width: clamp(120px, 9.9vw, 190px);
}
.consult-deco-top {
  top: 18%;
  right: 8%;
  width: 42px;
  transform: rotate(180deg);
}
@media (min-width: 981px) {
  .about-page .desktop-nav > a.active::after {
    opacity: 0;
  }
  .about-page .brand {
    margin-bottom: 12px;
  }
  .about-page .about-main {
    min-height: 1290px;
    padding: 70px 0;
  }
  .about-page .about-grid {
    grid-template-columns: 52.5% minmax(0, 1fr);
    gap: 58px;
  }
  .about-page .about-copy .en-title {
    font-size: 49px;
  }
  .about-page .about-copy h3 {
    font-size: 22px;
  }
  .about-page .about-copy p {
    font-size: 15px;
    line-height: 1.85;
  }
  .about-page .about-photo img {
    width: 748px;
    max-width: none;
    margin-top: 28px;
  }
  .about-page .about-main::after {
    right: -1%;
    bottom: 2%;
    width: 760px;
    height: 760px;
  }
  .about-page .about-trust {
    margin-top: 116px;
  }
  .about-page .consult-section {
    min-height: 714px;
    padding: 35px 0 28px;
  }
  .about-page .consult-grid {
    min-height: 644px;
    grid-template-columns: 44% minmax(0, 1fr);
  }
  .about-page .consult-copy {
    padding: 0 220px 40px 0;
    text-align: center;
    transform: translateY(-90px);
  }
  .about-page .consult-copy h2 {
    margin: 0 0 18px;
    font-size: 25px;
  }
  .about-page .consult-copy p {
    margin: 0 0 16px;
    color: #66615b;
    font-size: 16px;
    line-height: 2.05;
  }
  .about-page .consult-copy .btn {
    margin: 10px 0 35px;
  }
  .about-page .consult-photo > img:first-child {
    width: 620px;
    transform: translateX(-50px);
  }
  .about-page .consult-deco-right {
    right: -55px;
    bottom: -25px;
    width: 360px;
  }
}
@media (min-width: 981px) and (max-width: 1600px) {
  .case-card h3 {
    padding-right: 4px;
    padding-left: 4px;
    font-size: 18px;
  }
  .footer-bottom,
  .footer-inner,
  .header-inner {
    width: calc(100% - 80px);
  }
  .service-page .service-process-person {
    right: 0;
  }
  .about-page .about-photo img {
    width: 100%;
    max-width: 720px;
  }
  .about-page .consult-photo > img:first-child {
    max-width: 100%;
    transform: none;
  }
}
@media (max-width: 980px) {
  .consult-deco,
  .consult-photo::before {
    display: none;
  }
}

.consult-copy {
  text-align: center;
}

.consult-copy h2 {
  margin: 0 0 14px;
  font-size: 28px;
}
.consult-copy p {
  color: #68625c;
  font-size: 17px;
  line-height: 2;
}
.process-page {
  position: relative;
  padding: 70px 0 110px;
}
.process-page::after,
.process-page::before {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  content: "";
  opacity: 0.25;
  background: repeating-linear-gradient(
    135deg,
    #e9b538 0 5px,
    transparent 5px 14px
  );
}
.process-page::before {
  top: 110px;
  left: -100px;
}
.process-page::after {
  top: 130px;
  right: -90px;
}
.process-page .process-steps {
  position: relative;
  gap: 45px;
  margin-top: 70px;
}
.process-page .process-steps::after,
.process-page .process-steps::before {
  position: absolute;
  content: "";
}
.process-page .process-steps::before {
  top: 55px;
  left: -55px;
  width: 10px;
  height: 10px;
  border: 2px solid #ffe000;
  border-radius: 50%;
}
.process-page .process-steps::after {
  top: 15px;
  right: -55px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffe000;
}
.process-swoosh {
  position: absolute;
  top: 150px;
  left: -110px;
  width: 60px;
  height: 45px;
  border: 5px solid #ffe000;
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 30px;
}
.process-x {
  position: absolute;
  top: 45px;
  right: -75px;
  width: 14px;
  height: 14px;
}
.process-x::after,
.process-x::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #ffdb00;
}
.process-x::before {
  transform: rotate(45deg);
}
.process-x::after {
  transform: rotate(-45deg);
}
.process-page .process-step-card {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: 0 0;
}
.process-page .process-step-circle {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 1/1;
  border: 2px solid #f3a817;
  border-radius: 50%;
  background: #fffaee;
}
.process-page .process-step-card img {
  width: 82px;
  height: 82px;
  margin: 0;
}
.process-page .process-step-card p {
  margin: 26px 0 0;
  color: #6b655e;
  font-size: 15px;
  text-align: left;
}
.first-visit {
  display: grid;
  margin-top: 75px;
  grid-template-columns: 38% minmax(0, 1fr);
  align-items: center;
}
.faq-art img {
  margin: 0 auto;
}
.first-visit > img {
  width: min(100%, 520px);
  margin: 0 auto;
}
.first-visit-copy h3 {
  display: flex;
  margin: 0 0 20px;
  padding: 9px 18px;
  border-radius: 8px;
  background: #fff1c9;
  font-size: 22px;
  align-items: center;
  justify-content: center;
}
.h3-icon {
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
}
.numbered-note {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: note;
}
.numbered-note li {
  position: relative;
  margin: 15px 0;
  padding-left: 46px;
  color: #635e57;
}
.numbered-note li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 29px;
  height: 29px;
  border-radius: 8px;
  counter-increment: note;
  content: counter(note);
  color: #fff;
  background: #f0ad20;
  font-weight: 800;
}
.mini-faq {
  margin-top: 35px;
}
.faq-item .q-number,
.mini-faq h3,
.numbered-note li::before {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-faq h3 {
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 8px;
  background: #fff1c9;
}
.mini-faq p {
  color: #655f58;
}
.process-contact {
  margin-top: 70px;
  text-align: center;
}
.process-contact::before {
  display: block;
  width: 320px;
  height: 14px;
  margin: 0 auto 30px;
  content: "";
  background: url(../images/03/03wave.png) center/contain no-repeat;
}
.faq-item h3 {
  position: relative;
  margin: 0;
  padding: 14px 20px 14px 82px;
  color: #4f4a44;
  background: linear-gradient(90deg, #fff2cc, rgba(255, 250, 239, 0.15));
  font-size: 19px;
  line-height: 1.55;
}
.faq-page {
  position: relative;
  padding: 70px 0 110px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 34% minmax(0, 1fr);
  gap: 45px;
  align-items: start;
}
.faq-layout > * {
  min-width: 0;
}
.faq-art {
  position: sticky;
  top: 120px;
}
.faq-art img {
  width: min(100%, 560px);
}
.faq-list-intro {
  margin: 0 0 28px;
  color: #6a645e;
  font-size: 17px;
}
.faq-item {
  margin-bottom: 17px;
}
.faq-item .q-number {
  position: absolute;
  top: 50%;
  left: 0;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #ffd978, #e99a12);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transform: translateY(-50%);
}
.faq-item p {
  margin: 16px 0 31px;
  padding-left: 80px;
  color: #6b655f;
  font-size: 16px;
  line-height: 2;
}
.faq-consult {
  position: relative;
  display: grid;
  margin-top: 65px;
  grid-template-columns: 1fr 430px;
  align-items: center;
}
.faq-consult > img.faq-consult-deco {
  position: absolute;
  z-index: -1;
  top: 28%;
  left: -360px;
  width: 380px;
  pointer-events: none;
}
@media (max-width: 980px) {
  .faq-consult-deco {
    display: none;
  }
}
.faq-consult-copy {
  text-align: center;
}
.faq-consult-copy::before {
  display: block;
  width: 320px;
  height: 14px;
  margin: 0 auto 35px;
  content: "";
  background: url(../images/05/03wave.png) center/contain no-repeat;
}
.faq-consult-copy h2 {
  font-size: 29px;
}
.faq-consult-copy p {
  color: #68625c;
  font-size: 17px;
}
.faq-consult > img {
  width: 100%;
}
.back-to-top {
  position: fixed;
  z-index: 40;
  right: 45px;
  bottom: 44px;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  opacity: 0;
  background: 0 0;
  transform: translateY(15px);
  transition: 0.25s ease;
  visibility: hidden;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.site-footer {
  position: relative;
  min-height: 540px;
  padding: 70px 0 28px;
  color: #4e3d27;
  background: linear-gradient(
    105deg,
    var(--color-footer-gradient-start),
    var(--color-footer-gradient-mid) 58%,
    var(--color-footer-gradient-end)
  );
}
.footer-curve {
  position: absolute;
  top: -220px;
  right: 0;
  left: 0;
  height: 220px;
  background: url(../images/00-hp/footer_curve.svg) center bottom/100%
    100%no-repeat;
  pointer-events: none;
}
.footer-inner {
  position: relative;
  display: grid;
  width: min(calc(100% - 120px), 1640px);
  margin: 0 auto;
  grid-template-columns: 43% 19% minmax(0, 1fr);
  gap: 3.5%;
}
.footer-logo {
  width: 257px;
}
.footer-tagline {
  margin: 2px 0 22px;
  font-size: 14px;
  font-weight: 700;
  word-break: keep-all;
}
.footer-contact-row {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.footer-qr {
  flex: 0 0 155px;
}
.footer-qr img {
  width: 155px;
}
.footer-contact-list p,
.footer-links a {
  margin: 4px 0;
  font-size: 15px;
  font-weight: 700;
}
.footer-links a {
  display: block;
  margin: 8px 0;
}
.footer-contact-list img {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}
.footer-contact-list .visits {
  margin-top: 8px;
}
.footer-links h2,
.footer-notes h2 {
  margin: 0 0 16px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(122, 81, 20, 0.28);
  font-size: 18px;
}
.footer-links h2 img,
.footer-notes h2 img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  vertical-align: -4px;
}
.footer-notes ol {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.85;
}
.footer-facebook {
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
}
.footer-bottom {
  width: min(calc(100% - 120px), 1640px);
  margin: 42px auto 0;
  font-size: 13px;
}
.footer-bottom p {
  margin: 4px 0;
}
.footer-bottom img {
  display: inline-block;
  width: 18px;
  vertical-align: -4px;
}
.mobile-bottom-bar {
  display: none;
}
@media (max-width: 1600px) {
  .faq-consult-deco {
    display: none;
  }
}
@media (max-width: 1280px) {
  .consult-deco-right {
    display: none;
  }
  .header-inner {
    width: min(calc(100% - 70px), 1180px);
  }
  .desktop-nav {
    gap: 28px;
  }
  .hero-container {
    width: min(calc(100% - 70px), 1240px);
  }
  .hero-copy h1 {
    font-size: 37px;
  }
  .service-grid {
    gap: 18px;
  }
  .service-card {
    padding-right: 15px;
    padding-left: 15px;
  }
  .footer-bottom,
  .footer-inner {
    width: min(calc(100% - 70px), 1180px);
  }
}
@media (max-width: 980px) {
  body {
    padding-bottom: 72px;
  }
  .container {
    width: min(calc(100% - 38px), 760px);
  }
  .site-header {
    top: 18px;
  }
  .header-inner {
    width: calc(100% - 36px);
  }
  .brand {
    width: 205px;
    margin-bottom: 0;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    position: absolute;
    top: 13px;
    right: 2px;
    display: flex;
    width: 48px;
    height: 48px;
    padding: 10px;
    border: 0;
    background: 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    margin-left: auto;
    border-radius: 4px;
    background: #ed9300;
  }
  .mobile-menu-overlay {
    position: fixed;
    z-index: 70;
    inset: 0;
    display: block;
    opacity: 0;
    background: rgba(255, 245, 214, 0.9);
    pointer-events: none;
    transition: opacity 0.25s;
  }
  .mobile-drawer {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    bottom: 72px;
    display: block;
    width: 56vw;
    min-width: 265px;
    max-width: 360px;
    padding: 95px 24px 28px;
    background: #fff;
    box-shadow: -10px 0 30px rgba(95, 65, 18, 0.12);
    transform: translateX(105%);
    transition: transform 0.3s ease;
  }
  .menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-open .mobile-drawer {
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 23px;
    border: 0;
    color: #e99100;
    background: 0 0;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
  }
  .mobile-drawer nav a {
    display: block;
    padding: 15px 5px;
    border-bottom: 1px solid #f3d38b;
    color: #4c4843;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
  }
  .hero {
    height: 720px;
  }
  .hero-container {
    display: flex;
    width: calc(100% - 34px);
    padding-top: 100px;
    flex-direction: column;
    justify-content: center;
  }
  .hero-visual {
    width: 100%;
    padding: 30px 0 0;
    align-self: auto;
  }
  .hero-visual img {
    width: min(100%, 600px);
    margin: 0 auto;
  }
  .hero-copy {
    width: 100%;
    padding: 0 10px 150px;
    text-align: center;
  }
  .hero-copy h1 {
    font-size: clamp(28px, 6vw, 40px);
  }
  .hero-copy p {
    font-size: 18px;
  }
  .hero-copy strong {
    font-size: 17px;
  }
  .hero-dots {
    right: 50%;
    bottom: 38px;
    transform: translateX(50%);
  }
  .desktop-line-tab {
    display: none;
  }
  .section {
    padding: 65px 0;
  }
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-grid .service-card:last-child {
    grid-column: 1/-1;
    width: calc(50% - 9px);
    justify-self: center;
  }
  .about-grid,
  .consult-grid,
  .faq-consult,
  .faq-layout,
  .first-visit,
  .home-about-grid,
  .home-faq-grid,
  .process-strip-grid,
  .service-intro-grid {
    grid-template-columns: 1fr;
  }
  .home-about-copy {
    padding: 0;
    order: 2;
  }
  .home-about-visual {
    order: 1;
  }
  .mobile-bottom-bar a,
  .trust-row {
    justify-content: center;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .home-faq-grid {
    gap: 30px;
  }
  .home-faq-visual {
    display: none;
  }
  .process-strip {
    padding-top: 60px;
  }
  .process-strip-person {
    display: none;
  }
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
  }
  .service-process-content {
    width: 100%;
  }
  .service-process-person {
    display: none;
  }
  .about-photo {
    order: -1;
  }
  .about-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  .process-page .process-steps {
    gap: 30px 18px;
  }
  .process-page .process-steps::after,
  .process-page .process-steps::before,
  .process-swoosh,
  .process-x {
    display: none;
  }
  .faq-art {
    position: static;
    max-width: 460px;
    margin: 0 auto;
  }
  .faq-consult > img {
    max-width: 430px;
    margin: 20px auto 0;
  }
  .cases-intro {
    grid-template-columns: 1fr;
  }
  .cases-intro img {
    margin: 0 auto 20px;
  }
  .cases-count,
  .cases-intro {
    text-align: center;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-inner {
    width: calc(100% - 50px);
    grid-template-columns: 1fr 1fr;
    gap: 45px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    width: calc(100% - 50px);
  }
  .footer-facebook {
    top: 5px;
  }
  .mobile-bottom-bar {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 72px;
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-bottom-bar a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
  }
  .mobile-bottom-bar img {
    width: 25px;
    height: 25px;
  }
  .mobile-line {
    background: linear-gradient(
      90deg,
      var(--color-line-green-light),
      var(--color-line-green)
    );
  }
  .mobile-phone {
    background: linear-gradient(90deg, #ffad00, #e98500);
  }
  .mobile-map {
    background: linear-gradient(90deg, #12a9d4, #0083bb);
  }
  .back-to-top {
    right: 18px;
    bottom: 88px;
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 30px);
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .section-heading h2 {
    font-size: 25px;
  }
  .about-trust-item strong,
  .hero-copy strong,
  .section-heading p {
    font-size: 15px;
  }
  .hero {
    height: 655px;
  }
  .hero-container {
    padding-top: 105px;
  }
  .hero-visual {
    padding-top: 35px;
  }
  .hero-copy {
    padding-bottom: 150px;
  }
  .hero-copy h1 {
    margin-bottom: 8px;
    font-size: 27px;
  }
  .hero-copy p {
    font-size: 16px;
  }
  .btn {
    min-height: 43px;
    padding-right: 22px;
    padding-left: 22px;
    font-size: 14px;
  }
  .services-section {
    padding-top: 55px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-grid .service-card:last-child {
    width: auto;
    grid-column: auto;
  }
  .service-card {
    display: grid;
    min-height: 0;
    padding: 20px;
    grid-template-columns: 90px 1fr;
    column-gap: 16px;
    text-align: left;
  }
  .service-card img {
    width: 82px;
    height: 82px;
    margin: 8px auto 0;
    grid-row: 1/4;
  }
  .service-card h3 {
    margin-bottom: 5px;
    font-size: 19px;
  }
  .service-card p {
    min-height: 0;
    margin-bottom: 11px;
    font-size: 14px;
  }
  .service-card .btn {
    width: 110px;
    min-height: 34px;
    padding: 7px 15px;
  }
  .home-about {
    padding-top: 55px;
  }
  .home-about-copy h2 {
    font-size: 24px;
  }
  .home-about-copy h3 {
    font-size: 18px;
  }
  .trust-row {
    gap: 20px;
  }
  .trust-item {
    min-width: 84px;
    font-size: 14px;
  }
  .trust-item img {
    width: 56px;
    height: 56px;
  }
  .case-heading-deco img,
  .service-detail::before {
    display: none;
  }
  .case-card {
    padding: 0 18px 22px;
  }
  .case-card h3 {
    font-size: 17px;
  }
  .case-card p {
    font-size: 14px;
    line-height: 1.85;
  }
  .home-faq-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-step-card {
    min-height: 0;
    padding: 35px 15px 18px;
  }
  .service-copy .lead {
    font-size: 19px;
  }
  .service-process-band {
    padding-top: 60px;
  }
  .about-trust-item {
    width: 150px;
    height: 150px;
    border-width: 5px;
  }
  .about-trust-item img {
    width: 55px;
    height: 55px;
  }
  .footer-inner,
  .process-page .process-steps {
    grid-template-columns: 1fr;
  }
  .process-page .process-step-card {
    min-height: 0;
    border-radius: 30px;
  }
  .faq-item h3 {
    padding: 13px 13px 13px 58px;
    font-size: 16px;
  }
  .faq-item .q-number {
    width: 50px;
    height: 50px;
    font-size: 15px;
  }
  .faq-item p {
    margin-bottom: 25px;
    padding-left: 0;
    font-size: 14px;
  }
  .faq-consult-copy::before,
  .process-contact::before {
    width: 230px;
  }
  .footer-inner {
    width: calc(100% - 32px);
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-logo {
    width: 245px;
  }
  .footer-contact-row,
  .mobile-bottom-bar a {
    flex-direction: column;
  }
  .footer-qr {
    flex-basis: auto;
  }
  .footer-links,
  .footer-notes {
    padding-top: 15px;
    border-top: 1px solid rgba(105, 70, 15, 0.2);
  }
  .footer-bottom {
    width: calc(100% - 32px);
  }
  .footer-facebook {
    width: 50px;
  }
  .mobile-bottom-bar a {
    gap: 3px;
    font-size: 14px;
  }
  .mobile-bottom-bar img {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 520px) {
  body {
    padding-bottom: 79px;
  }
  .mobile-drawer {
    bottom: 79px;
    width: 265px;
    min-width: 0;
    max-width: none;
    padding: 108px 12px 20px;
  }
  .mobile-menu-close {
    top: 18px;
    right: 21px;
  }
  .mobile-drawer nav a {
    padding: 14px 5px;
    font-size: 20px;
  }
  .mobile-bottom-bar {
    height: 79px;
  }
}
@media (max-width: 980px) {
  body.menu-open {
    overflow: hidden;
  }
  .mobile-drawer nav a.active {
    color: #e99500;
  }
  .mobile-menu-close {
    width: 42px;
    height: 42px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }
  .mobile-menu-close::after,
  .mobile-menu-close::before {
    position: absolute;
    top: 20px;
    left: 8px;
    width: 27px;
    height: 3px;
    border-radius: 2px;
    background: #e99100;
    content: "";
  }
  .mobile-menu-close::before {
    transform: rotate(45deg);
  }
  .mobile-menu-close::after {
    transform: rotate(-45deg);
  }
  .home-faq-visual,
  .process-strip-person,
  .service-process-person {
    display: block;
  }
  .home-faq-visual {
    width: min(100%, 430px);
    min-height: 0;
    margin: 10px auto 0;
  }
  .process-strip-grid {
    align-items: center;
  }
  .process-strip-person {
    width: min(82%, 480px);
    margin: 0 auto 42px;
  }
  .process-strip-person img {
    width: 100%;
    margin: 0 auto;
  }
  .service-process-band {
    padding-bottom: 0;
    overflow: hidden;
  }
  .service-process-person {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(78%, 500px);
    margin: 32px auto -4px;
  }
}
@media (max-width: 520px) {
  .mobile-drawer {
    padding-top: 111px;
  }
  .mobile-menu-close {
    top: 13px;
    right: 20px;
  }
  .mobile-drawer nav a {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .home-faq-visual,
  .process-strip-person,
  .service-process-person {
    width: min(94%, 390px);
  }
}
@media (min-width: 981px) {
  .home-page .cases-preview {
    height: clamp(500px, 40.63vw, 780px);
    min-height: clamp(500px, 40.63vw, 780px);
    padding: clamp(38px, 2.3vw, 44px) 0 42px;
  }
  .home-page .cases-preview > .container {
    width: min(83.7vw, 1580px);
  }
  .home-page .cases-preview .section-heading {
    height: clamp(100px, 7.82vw, 150px);
    margin-bottom: clamp(48px, 3.75vw, 72px);
  }
  .home-page .cases-preview .section-heading h2 {
    font-size: clamp(20px, 1.35vw, 26px);
  }
  .home-page .cases-preview .section-heading p strong {
    font-size: clamp(17px, 1.1vw, 21px);
  }
  .home-page .cases-preview .case-grid {
    width: 100%;
    margin-inline: auto;
    gap: clamp(42px, 3.44vw, 66px);
    transform: none;
  }
  .home-page .cases-preview .case-card {
    height: clamp(250px, 21.38vw, 410px);
    min-height: clamp(250px, 21.38vw, 410px);
    padding: 0 clamp(20px, 1.56vw, 30px) clamp(20px, 1.35vw, 26px);
    border-width: 2px;
    border-radius: clamp(16px, 1.05vw, 20px);
  }
  .home-page .cases-preview .case-card h3 {
    padding: clamp(15px, 1.2vw, 23px) 8px clamp(14px, 1.3vw, 25px);
    font-size: clamp(20px, 1.35vw, 26px);
    font-weight: 600;
    line-height: 1.45;
  }
  .home-page .cases-preview .case-card h3::before {
    width: clamp(28px, 1.98vw, 38px);
    height: clamp(28px, 1.98vw, 38px);
    margin-right: clamp(8px, 0.52vw, 10px);
    content: "";
    background: url(../images/04/case_icon.svg) center/contain no-repeat;
    font-size: 0;
    vertical-align: middle;
    transform: translateY(-1px);
  }
  .home-page .cases-preview .case-card p {
    margin-top: clamp(12px, 0.78vw, 15px);
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: 1.9;
  }
  .home-page .cases-preview .case-actions {
    margin-top: clamp(36px, 2.8125vw, 56px);
  }
  .home-page .cases-preview .case-actions .btn-gold {
    width: clamp(200px, 13.55vw, 260px);
    min-height: clamp(44px, 2.86vw, 55px);
    padding: 8px 20px;
    font-size: clamp(12px, 0.73vw, 14px);
    white-space: nowrap;
  }
  .home-page .cases-preview::before {
    top: 0;
    bottom: auto;
    height: 100%;
    background-position: left top;
  }
  .home-page .cases-preview::after {
    top: auto;
    bottom: -18px;
    height: min(655px, 78%);
    background-position: right bottom;
  }
}
@media (min-width: 1601px) {
  :root {
    --container: 1600px;
  }
  .header-inner {
    width: 1612px;
  }
  .brand {
    width: 257px;
    margin-bottom: 22px;
  }
  .desktop-nav {
    height: 64px;
    gap: 44px;
  }
  .hero {
    min-height: 833px;
  }
  .hero-bg {
    background-size: 1920px 833px;
  }
  .hero-container {
    width: 1600px;
    padding-top: 175px;
    grid-template-columns: 53.5% minmax(0, 1fr);
  }
  .hero-visual {
    padding-bottom: 73px;
  }
  .hero-visual img {
    width: 818px;
    margin-left: -8px;
    transform: translateY(-13px);
  }
  .hero-copy {
    padding: 38px 0 45px 27px;
    transform: translateY(-24px);
  }
  .hero-copy h1 {
    font-size: 43px;
  }
  .hero-copy p {
    font-size: 26px;
  }
  .hero-copy strong {
    font-size: 24px;
  }
  .site-footer {
    min-height: 630px;
    padding: 99px 0 24px;
  }
  .footer-curve {
    left: 0;
    width: 100%;
  }
  .footer-bottom,
  .footer-inner {
    width: 1610px;
  }
  .home-page .services-section {
    height: 676px;
    min-height: 676px;
    padding: 50px 0 48px;
  }
  .home-page .services-section .service-grid {
    width: 1632px;
    margin-left: -16px;
    gap: 38px;
  }
  .home-page .services-section .section-heading {
    margin-bottom: 45px;
  }
  .home-page .services-section .service-card {
    padding: 28px 20px 18px;
    border: 2px solid #f7dfab;
  }
  .home-page .services-section .service-card img {
    margin-bottom: 4px;
  }
  .home-page .services-section .service-card h3 {
    margin-bottom: 5px;
  }
  .home-page .services-section .service-card p {
    margin-bottom: 8px;
  }
  .home-page .home-about {
    height: 799px;
    min-height: 799px;
    padding: 56px 0 12px;
  }
  .home-page .home-about-copy {
    padding-left: 0;
  }
  .home-page .home-about-visual img {
    width: 908px;
    max-width: none;
    margin-right: 0;
    margin-left: 32px;
  }
  .home-page .process-strip .process-step-card img {
    width: 100px;
    height: 100px;
  }
  .home-page .home-faq-teaser {
    height: 432px;
    min-height: 432px;
    padding: 42px 0;
  }
  .home-page .process-strip {
    height: 795px;
    min-height: 795px;
    padding: 50px 0 55px;
  }
  .home-page .process-strip-grid {
    align-items: end;
  }
  .home-page .process-strip-person {
    position: relative;
    min-height: 564px;
  }
  .home-page .process-strip-person img {
    position: absolute;
    left: -156px;
    width: 681px;
    max-width: none;
    margin: 0;
  }
  .home-page .process-strip .process-step-card {
    padding-top: 48px;
  }
  .about-page .about-main {
    min-height: 1096px;
    padding: 35px 0 45px;
  }
  .about-page .about-photo img {
    width: 884px;
    margin-top: 50px;
    transform: translateX(-22px);
  }
  .about-page .about-copy h3 {
    font-size: 24px;
  }
  .about-page .about-copy p {
    font-size: 16px;
    line-height: 1.85;
  }
  .about-page .about-trust {
    margin-top: 25px;
  }
  .about-page .consult-section {
    padding: 28px 0 16px;
  }
  .about-page .site-footer {
    min-height: 593px;
    padding-top: 99px;
  }
  .about-page .consult-grid {
    min-height: 680px;
  }
  .about-page .consult-photo > img:first-child {
    width: 620px;
    transform: translate(-50px, 11px);
  }
  .about-page .consult-copy {
    padding-right: 320px;
  }
  .about-page .consult-copy h2 {
    font-size: 28px;
  }
  .about-page .consult-copy p {
    font-size: 17px;
  }
  .service-page .inner-title {
    height: 164px;
    padding: 60px 0 0;
  }
  .service-page .inner-title .section-heading {
    margin-bottom: 0;
  }
  .service-page .service-detail {
    min-height: 790px;
    padding: 32px 0 52px;
  }
  .service-page .service-intro-grid {
    grid-template-columns: 38% minmax(0, 1fr);
    gap: 25px;
    transform: translateY(-14px);
  }
  .service-page .service-main-image img {
    width: 588px;
    transform: translateX(-29px);
  }
  .service-page .service-copy {
    transform: translateX(-30px);
  }
  .service-page .service-copy .lead {
    font-size: 22px;
  }
  .service-page .check-list li,
  .service-page .document-list li,
  .service-page .service-copy > p {
    font-size: 16px;
  }
  .service-page .service-process-band {
    min-height: 639px;
    padding: 96px 0 45px;
  }
  .service-process-title {
    margin: 0;
    color: #4d4944;
    font-size: 31px;
    text-align: center;
  }
  .service-page .service-process-content {
    width: 67%;
  }
  .service-page .service-process-content .process-steps {
    gap: 18px;
  }
  .service-page .process-step-card {
    min-height: 240px;
    padding-top: 45px;
  }
  .service-page .process-step-card img {
    width: 100px;
    height: 100px;
  }
  .service-page .process-step-card h3 {
    font-size: 18px;
  }
  .service-page .service-process-person {
    right: 54px;
    bottom: 0;
    width: 598px;
    max-width: none;
  }
  .service-process-title span {
    color: #ed8b00;
  }
  .service-process-lead {
    color: #655f59;
    text-align: center;
  }
  .service-process-action {
    margin-top: 28px;
    text-align: center;
  }
  .service-page .more-services {
    min-height: 677px;
    padding: 48px 0 58px;
  }
  .service-page .more-services .section-heading {
    margin-bottom: 45px;
  }
  .service-page .more-services .service-card {
    border: 2px solid #f7dfab;
    padding: 22px 20px;
  }
  .service-page .more-services .service-card img {
    width: 160px;
    height: 160px;
    margin-bottom: 8px;
  }
  .service-page .more-services .service-card p {
    min-height: 62px;
    margin-bottom: 10px;
  }
  .service-page .site-footer {
    min-height: 593px;
  }
  .process-view .process-page {
    min-height: 1874px;
    padding: 66px 0 74px;
  }
  .process-view .process-page .process-steps {
    width: 1480px;
    margin: 70px auto 0;
    gap: 80px;
  }
  .process-view .process-page .process-step-card {
    min-height: 0;
    padding: 0;
  }
  .process-view .process-page .process-step-card img {
    width: 100px;
    height: 100px;
  }
  .process-view .first-visit {
    margin-top: 163px;
  }
  .process-view .numbered-note li {
    margin: 24px 0;
    font-size: 17px;
    line-height: 1.85;
  }
  .process-view .site-footer {
    min-height: 593px;
  }
  .cases-view .cases-page {
    padding: 66px 0 90px;
  }
  .cases-view .cases-page .section-heading {
    margin-bottom: 26px;
  }
  .cases-view .cases-intro {
    max-width: 1080px;
  }
  .cases-view .cases-intro img {
    margin-left: 22px;
    width: 330px;
  }
  .cases-view .cases-page .case-card {
    min-height: 412px;
    padding: 0 34px 34px;
  }
  .cases-view .site-footer {
    min-height: 593px;
  }
  .faq-view .faq-page {
    min-height: 2772px;
    padding: 66px 0 80px;
  }
  .faq-view .faq-layout {
    grid-template-columns: 545px minmax(0, 1fr);
    gap: 10px;
  }
  .faq-view .faq-consult {
    grid-template-columns: 1fr 489px;
  }
  .faq-view .faq-consult > img:last-child {
    transform: translateX(102px);
  }
  .faq-view .faq-consult > img.faq-consult-deco {
    top: -301px;
    left: -159px;
    width: 502px;
  }
  .faq-view .site-footer {
    min-height: 593px;
  }
  .section-heading h2 {
    font-size: 31px;
    letter-spacing: 0.055em;
  }
  .section-heading .en {
    font-size: 12px;
  }
  .section-heading p {
    font-size: 14px;
  }
  .home-page .services-section .section-heading {
    height: 128px;
    transform: translateY(33px);
  }
  .home-page .services-section .service-grid {
    transform: translateY(28px);
  }
  .home-page .services-section .service-card {
    height: 375px;
    min-height: 375px;
    padding-top: 23px;
  }
  .about-page .about-main > .container > .section-heading {
    height: 81.4px;
    transform: translateY(48px);
  }
  .about-page .about-copy .en-title {
    font-size: 49px;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .service-page .inner-title .section-heading {
    transform: translateY(22px);
  }
  .process-view .process-page > .container > .section-heading {
    height: 128.1px;
    transform: translateY(16px);
  }
  .cases-view .cases-page > .container > .section-heading {
    height: 81.4px;
    transform: translateY(16px);
  }
  .faq-view .faq-page > .container > .section-heading {
    height: 81.4px;
    transform: translateY(18px);
  }
  .cases-view .cases-intro {
    margin-bottom: 23px;
    grid-template-columns: 352px 1fr;
  }
  .cases-view .cases-page {
    min-height: 2365px;
  }
  .desktop-line-tab {
    top: 468px;
    left: 12px;
    width: 129px;
  }
  .hero-copy .btn-line {
    width: 270px;
    min-height: 50px;
    transform: translate(10px, 11px);
  }
  .home-page .home-faq-copy {
    transform: translateY(-19px);
  }
  .home-page .home-faq-copy p {
    margin: 9px 0;
    font-size: 14px;
    line-height: 1.85;
  }
  .home-page .home-faq-actions {
    gap: 24px;
    transform: translateX(-5px);
    flex-wrap: nowrap;
  }
  .home-page .home-faq-actions .btn {
    width: 260px;
    min-height: 55px;
    padding-left: 38px;
    padding-right: 38px;
  }
  .home-page .process-strip-person img {
    bottom: -4px;
  }
  .home-page .process-strip-content {
    transform: none;
  }
  .home-page .process-strip-content h2 {
    line-height: 1.3;
    transform: none;
  }
  .home-page .process-strip-content > p {
    margin-bottom: 30px;
    transform: none;
  }
  .home-page .process-strip .btn-gold {
    width: 260px;
    min-height: 56px;
    padding-left: 50px;
    padding-right: 50px;
  }
  .home-page .home-faq-actions .btn-line {
    margin-top: 0;
  }
  .home-page .process-strip .btn-gold {
    transform: translate(-23px, 43px);
  }
  .home-page .services-section .section-heading h2 {
    font-size: 30px;
  }
  .service-page .more-services .section-heading h2 {
    font-size: 24px;
  }
  .service-page .more-services .section-heading {
    transform: translateY(5px);
  }
  .about-page .consult-section {
    min-height: 796px;
  }
  .home-page .home-faq-actions {
    margin-top: 47px;
  }
  .cases-view .cases-page .case-card h3 {
    transform: none;
    padding: 23px 8px 25px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.45;
    transform: translateY(7px);
  }
  .cases-view .cases-page .case-card h3::before {
    width: 38px;
    height: 38px;
    margin-right: 10px;
    content: "";
    background: url(../images/04/case_icon.svg) center/contain no-repeat;
    vertical-align: middle;
    transform: translateY(-1px);
  }
  .home-page .services-section {
    background: linear-gradient(
      180deg,
      #f9dc91 0,
      #fdeecd 8%,
      #fff5dc 23%,
      #fff8e5 45%,
      #fffbf2 67%,
      #fff 100%
    );
    background: linear-gradient(
      180deg,
      #f6d783 0,
      #fce8b5 10%,
      #fff2d5 28%,
      #fff7e5 55%,
      #fffaf1 78%,
      #fff 100%
    );
  }
  .site-footer {
    background: linear-gradient(
      90deg,
      #e1a34c 0,
      #e1b471 25%,
      #fbd894 55%,
      #ffde94 78%,
      #ffdb88 100%
    );
  }
  .home-page .home-faq-visual img {
    transform: translateX(-62px);
  }
  .hero::after {
    height: 220px;
    background-image: url(../images/00-hp/hero_wave_gold.svg?v=7);
    background-size: 100% 100%;
  }
  .home-page .service-card {
    height: 405px;
    min-height: 405px;
    padding-top: 27px;
  }
  .home-page .service-card img {
    width: 170px;
    height: 170px;
  }
  .home-page .service-card p {
    min-height: 64px;
  }
  .home-page .home-about-copy {
    transform: translateY(84px);
  }
  .home-page .home-about-copy h2 {
    font-size: 32px;
  }
  .home-page .home-about-copy h3 {
    font-size: 24px;
    margin-bottom: 22px;
  }
  .home-page .home-about-copy p {
    font-size: 18px;
    line-height: 1.9;
  }
  .home-page .trust-row {
    margin-top: 44px;
    margin-bottom: 34px;
  }
  .home-page .trust-item {
    font-size: 17px;
  }
  .home-page .trust-item img {
    width: 112px;
    height: 112px;
    margin-bottom: 12px;
  }
  .footer-curve {
    top: -180px;
    height: 180px;
  }
  .footer-qr {
    width: 175px;
  }
  .footer-qr img {
    flex-basis: 175px;
    width: 155px;
  }
  .footer-contact-list p {
    font-size: 15px;
    margin: 4px 0;
  }
  .footer-links h2,
  .footer-notes h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .footer-links a {
    font-size: 15px;
    margin: 8px 0;
  }
  .footer-notes ol {
    font-size: 13px;
    line-height: 1.85;
  }
  .service-page .more-services .service-card {
    min-height: 405px;
    height: 405px;
  }
  .about-page .about-copy {
    transform: translateY(48px);
  }
  .about-page .consult-copy {
    transform: translateY(55px);
  }
  .process-view .process-page .process-step-circle {
    max-width: 315px;
  }
  .process-view .process-page .process-step-card p {
    margin-top: 34px;
    font-size: 17px;
    line-height: 2.05;
  }
  .process-view .mini-faq {
    margin-top: 42px;
  }
  .process-view .mini-faq p {
    margin: 14px 0;
    font-size: 17px;
    line-height: 2.05;
  }
  .process-view .process-contact {
    margin-top: 92px;
  }
  .faq-view .faq-item h3 {
    padding-left: 79px;
    font-size: 17px;
    min-height: 56px;
  }
  .faq-view .faq-item p {
    padding-left: 79px;
    font-size: 16px;
    margin: 16px 0 32px;
    line-height: 2;
  }
  .faq-view .faq-list-intro {
    font-size: 17px;
  }
  .home-page .home-faq-visual img {
    transform: translate(-62px, 20px);
  }
  .process-view .first-visit > img {
    transform: translateX(-65px) scale(1.04);
  }
  .faq-view .faq-item {
    margin-bottom: 28px;
  }
  .faq-view .faq-consult {
    margin-top: 38px;
  }
  .home-page .services-section {
    background: linear-gradient(
      180deg,
      #ffe6b5 0,
      #ffedca 10%,
      #fff4dc 28%,
      #fff8e8 55%,
      #fffaf1 78%,
      #fff 100%
    );
  }
  .home-page .service-card h3 {
    font-size: 22px;
  }
  .home-page .service-card p {
    font-size: 16px;
    line-height: 1.6;
  }
  .home-page .home-about::after {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 41% 18% minmax(0, 1fr);
    gap: 3.5%;
  }
  .process-view .first-visit {
    position: relative;
  }
  .process-view .first-visit::after {
    position: absolute;
    z-index: -1;
    top: 245px;
    right: -170px;
    width: 360px;
    height: 560px;
    content: "";
    background: url(../images/03/03pic2.png) center/contain no-repeat;
    pointer-events: none;
  }
  .home-page .services-section .service-card .btn {
    width: 220px;
    min-height: 47px;
    margin: 15px auto 0;
    padding: 10px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .home-page .trust-row {
    gap: 112px;
    transform: translate(51px, 4px);
  }
  .home-page .home-about-copy > .btn {
    width: 219px;
    min-height: 57px;
    transform: translate(-5px, 34px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cases-view .cases-page .case-card {
    border: 3px solid #efc778;
    border-radius: 26px;
    padding-bottom: 29px;
  }
  .cases-view .cases-page .case-card p {
    margin-top: 15px;
    font-size: 18px;
    line-height: 42px;
  }
  .cases-view .cases-page .case-grid {
    width: 1607px;
    gap: 33px 60px;
    margin-inline: auto;
    transform: translateY(-3px);
  }
  .about-page .about-photo img {
    transform: translate(-24px, 8px);
  }
  .about-page .about-trust {
    gap: 45px;
    transform: translate(-6px, -10px);
  }
  .about-page .about-trust-item {
    width: 317px;
    height: 317px;
    border-width: 10px;
  }
  .about-page .about-trust-item img {
    width: 116px;
    height: 116px;
  }
  .about-page .about-trust-item strong {
    font-size: 27px;
  }
  .process-view .first-visit {
    transform: translateY(-49px);
  }
  .process-view .first-visit > img {
    width: 605px;
    max-width: none;
    transform: translateX(-50px);
    transform-origin: center center;
  }
  .faq-view .faq-art img {
    width: 490px;
    max-width: 490px;
    transform: translate(0, 4px);
  }
  .faq-view .faq-consult > img:last-child {
    width: 489px;
    max-width: 489px;
    transform: translate(0, -10px);
  }
  .footer-logo {
    width: 257px;
  }
  .footer-tagline {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer-qr {
    flex-basis: 155px;
  }
  .footer-contact-list img {
    width: 30px;
    height: 30px;
  }
  .footer-bottom {
    font-size: 13px;
    margin-top: 34px;
  }
  .about-page .about-main {
    margin-bottom: -23px;
  }
  .home-page .services-section .section-heading {
    margin-bottom: 30px;
  }
  .home-page .services-section .section-heading h2 {
    font-size: clamp(20px, 2vw, 27px);
    letter-spacing: 0.045em;
  }
  .home-page .services-section .section-heading .en {
    margin-top: 2px;
    font-size: 10px;
  }
  .home-page .services-section .section-heading p {
    margin-top: 12px;
    font-size: 12px;
  }
  .home-page .services-section .service-card .btn {
    min-height: 45px;
    margin-top: -6px;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .home-page .process-strip-person img {
    bottom: 5.5vw;
  }
}

/* Keep the process portrait above the footer arc on compact desktop. */
@media (min-width: 1441px) and (max-width: 1600px) {
  .home-page .process-strip-person img {
    bottom: 5.5vw;
  }
}
@media (min-width: 1601px) {
  .hero {
    z-index: 3;
    overflow: visible;
  }
  .hero::after {
    height: 240px;
    bottom: -48px;
    background-image: url(../images/00-hp/hero_wave_gold_ref.svg?v=25);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 calc(100% - 18px),
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      #000 0,
      #000 calc(100% - 18px),
      transparent 100%
    );
  }
}
@media (min-width: 981px) and (max-width: 1600px) {
  .home-page .container {
    width: calc(100% - 80px);
    max-width: 1520px;
  }
  .hero {
    z-index: 3;
    height: 43.4vw;
    min-height: 43.4vw;
    overflow: visible;
  }
  .hero::after {
    bottom: -2.3vw;
    height: 12.5vw;
    background-image: url(../images/00-hp/hero_wave_gold_ref.svg?v=25);
    background-position: center bottom;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0, #000 calc(100% - 18px), transparent 100%);
  }
  .hero-container {
    width: 83.33vw;
    padding-top: 9.1vw;
    padding-right: 0;
    padding-left: 0;
    grid-template-columns: 52% minmax(0, 1fr);
  }
  .hero-visual {
    padding-bottom: 3.8vw;
  }
  .hero-copy {
    padding: 2vw 0 2.35vw 1.4vw;
  }
  .home-page .services-section {
    height: 35.22vw;
    min-height: 35.22vw;
    padding: 2.6vw 0 2.5vw;
    background: linear-gradient(180deg, #ffe6b5 0, #ffedca 10%, #fff4dc 28%, #fff8e8 55%, #fffaf1 78%, #fff 100%);
  }
  .home-page .services-section > .container {
    width: 84.95vw;
  }
  .home-page .services-section .service-grid {
    width: 83.9vw;
    margin-right: auto;
    margin-left: auto;
    gap: 3.33vw;
    transform: none;
  }
  .home-page .services-section .section-heading {
    height: 6.7vw;
    margin-bottom: 1.55vw;
  }
  .home-page .services-section .section-heading h2 {
    font-size: 20px;
    letter-spacing: 0.045em;
  }
  .home-page .services-section .section-heading .en {
    margin-top: 2px;
    font-size: 10px;
  }
  .home-page .services-section .section-heading p {
    margin-top: 0.65vw;
    font-size: 11px;
  }
  .home-page .services-section .service-card {
    height: 21vw;
    min-height: 21vw;
    padding: 1.3vw 1vw 0.95vw;
    border-width: 1px;
    border-radius: 1vw;
  }
  .home-page .services-section .service-card img {
    width: 9.1vw;
    height: 9.1vw;
    margin-bottom: 0.2vw;
  }
  .home-page .services-section .service-card h3 {
    margin-bottom: 0.3vw;
    font-size: 1.15vw;
  }
  .home-page .services-section .service-card p {
    min-height: 3.3vw;
    margin-bottom: 0.4vw;
    font-size: 0.83vw;
    line-height: 1.55;
  }
  .home-page .services-section .service-card .btn {
    width: 12.8vw;
    min-height: 2.45vw;
    margin-top: 0;
    padding: 0.45vw 1.2vw;
    gap: 0.7vw;
    font-size: 0.94vw;
  }
  .home-page .home-about {
    height: 41.64vw;
    min-height: 41.64vw;
    padding: 2.9vw 0 0.65vw;
  }
  .home-page .home-about-copy {
    padding-left: 0;
    transform: translateY(4.35vw);
  }
  .home-page .home-about-copy h2 {
    font-size: 1.67vw;
  }
  .home-page .home-about-copy h3 {
    margin-bottom: 1.15vw;
    font-size: 1.25vw;
  }
  .home-page .home-about-copy p {
    font-size: 0.94vw;
    line-height: 1.9;
  }
  .home-page .trust-row {
    margin-top: 2.3vw;
    margin-bottom: 1.8vw;
    gap: 5.8vw;
    transform: translate(2.65vw, 0.2vw);
  }
  .home-page .trust-item {
    min-width: 6.15vw;
    font-size: 0.89vw;
  }
  .home-page .trust-item img {
    width: 5.83vw;
    height: 5.83vw;
  }
  .home-page .home-about-copy > .btn {
    width: 11.4vw;
    min-height: 2.97vw;
    padding-right: 1.2vw;
    padding-left: 1.2vw;
    transform: translate(-0.25vw, 1.75vw);
    white-space: nowrap;
  }
  .home-page .home-about-visual {
    min-width: 0;
  }
  .home-page .home-about-visual img {
    width: 47.3vw;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }
  .home-page .cases-preview {
    padding: 2.3vw 0 2.2vw;
  }
  .home-page .cases-preview .section-heading {
    height: 7.82vw;
    margin-bottom: clamp(36px, 2.8125vw, 56px);
  }
  .home-page .cases-preview .case-actions {
    margin-top: clamp(36px, 2.8125vw, 56px);
  }
  .home-page .home-faq-teaser {
    height: 22.52vw;
    min-height: 22.52vw;
    padding: 2.2vw 0;
  }
  .home-page .home-faq-grid {
    grid-template-columns: 1fr 25vw;
    gap: 4.15vw;
  }
  .home-page .home-faq-visual img {
    width: 25.55vw;
    transform: translate(-3.2vw, 4.05vw);
  }
  .home-page .home-faq-copy {
    transform: none;
  }
  .home-page .home-faq-copy h2 {
    font-size: 1.6vw;
  }
  .home-page .home-faq-copy p {
    margin: 0.47vw 0;
    font-size: 0.75vw;
    line-height: 1.85;
  }
  .home-page .home-faq-actions {
    margin-top: 2.45vw;
    gap: 1.25vw;
    transform: translateX(-0.25vw);
  }
  .home-page .home-faq-actions .btn {
    width: 13.55vw;
    min-height: 2.86vw;
    padding: 0.5vw 1.45vw;
    font-size: 0.73vw;
  }
  .home-page .process-strip {
    height: 41.38vw;
    min-height: 41.38vw;
    padding: 2.6vw 0 2.85vw;
  }
  .home-page .process-strip-person {
    min-height: 29.38vw;
  }
  .home-page .process-strip-person img {
    position: absolute;
    bottom: -0.2vw;
    left: -8.1vw;
    width: 35.47vw;
    max-width: none;
    margin: 0;
  }
  .home-page .process-strip-content {
    transform: none;
  }
  .home-page .process-strip-content h2 {
    margin-bottom: 1.55vw;
    font-size: 1.62vw;
    transform: none;
  }
  .home-page .process-strip-content > p {
    margin-bottom: 1.65vw;
    font-size: 0.8vw;
    line-height: 1.7;
    transform: none;
  }
  .home-page .process-strip .process-step-card {
    min-height: 10.68vw;
    padding: 2.5vw 0.78vw 0.95vw;
    border-radius: 1vw;
  }
  .home-page .process-strip .process-step-card img {
    width: 5.2vw;
    height: 5.2vw;
  }
  .home-page .process-strip .process-step-card h3 {
    font-size: 1.05vw;
    line-height: 1.55;
  }
  .home-page .process-strip .btn-gold {
    width: 13.55vw;
    min-height: 2.92vw;
    padding: 0.55vw 1.4vw;
    font-size: 0.82vw;
    transform: translate(-1.2vw, 0.95vw);
  }
  .site-footer {
    min-height: 32.83vw;
    padding: 5.15vw 0 1.25vw;
  }
  .footer-curve {
    top: -9.38vw;
    height: 9.38vw;
  }
}
@media (min-width: 1601px) {
  .home-page .services-section .service-grid {
    width: 1565px;
    margin-right: auto;
    margin-left: auto;
    gap: 62px;
  }
  .home-page .services-section .service-card {
    height: 395px;
    min-height: 395px;
  }
  .home-page .services-section .service-card .btn {
    width: 238px;
  }
  .home-page .home-faq-actions .btn {
    width: 260px;
    min-height: 55px;
    padding: 10px 28px;
    font-size: 14px;
    white-space: nowrap;
  }
}

/* Match the compact legal-copy rhythm and footer height in the supplied artwork. */
@media (min-width: 981px) {
  .site-footer .footer-notes ol {
    font-size: clamp(11px, 0.8vw, 13px);
    line-height: 1.65;
  }
  .site-footer .footer-bottom {
    margin-top: 24px;
  }
  .site-footer {
    padding-bottom: 0;
  }
  .site-footer .footer-bottom p:last-child {
    margin-bottom: 0;
  }
}

/* Pixel-proportional desktop header, hero and footer from the 795px artwork. */
@media (min-width: 981px) and (max-width: 1600px) {
  .site-header {
    top: 2.25vw;
  }
  .header-inner {
    width: 83.33vw;
  }
  .brand {
    width: 13vw;
    margin-bottom: 0.45vw;
  }
  .desktop-nav {
    height: 3.4vw;
    gap: 2vw;
    padding: 0 3vw;
  }
  .desktop-nav .nav-dropdown > button,
  .desktop-nav > a {
    gap: 0.4vw;
    font-size: 1vw;
  }
  .desktop-nav img {
    width: 1.4vw;
    height: 1.4vw;
  }
  .hero-container {
    grid-template-columns: 55.6% minmax(0, 1fr);
  }
  .hero-visual {
    padding-bottom: 6.1vw;
  }
  .hero-visual img {
    width: 42.2vw;
    margin-left: -0.8vw;
  }
  .hero-copy {
    padding-left: 1vw;
    transform: translateY(1.8vw);
  }
  .hero-copy h1 {
    font-size: 2.3vw;
  }
  .hero-copy p {
    font-size: 1.45vw;
  }
  .hero-copy strong {
    font-size: 1.3vw;
  }
  .site-footer {
    padding-top: 7.7vw;
  }
  .site-footer .footer-inner,
  .site-footer .footer-bottom {
    width: 84vw;
  }
  .site-footer .footer-logo {
    width: 13.7vw;
  }
  .site-footer .footer-tagline {
    margin-bottom: 1.2vw;
    font-size: 0.92vw;
    line-height: 1.55;
  }
  .site-footer .footer-qr {
    flex-basis: 8vw;
  }
  .site-footer .footer-qr img {
    width: 8vw;
  }
  .site-footer .footer-contact-row {
    gap: 1.2vw;
  }
  .site-footer .footer-contact-list p,
  .site-footer .footer-links a {
    font-size: 0.92vw;
    line-height: 1.65;
  }
  .site-footer .footer-contact-list img {
    width: 1.5vw;
    height: 1.5vw;
  }
  .site-footer .footer-links h2,
  .site-footer .footer-notes h2 {
    margin-bottom: 0.8vw;
    padding-bottom: 0.35vw;
    font-size: 1.06vw;
    line-height: 1.4;
  }
  .site-footer .footer-notes ol {
    font-size: 0.82vw;
    line-height: 1.72;
  }
  .site-footer .footer-bottom {
    margin-top: 1.3vw;
    font-size: 0.82vw;
    line-height: 1.65;
  }
}

/* One right decoration spans cases + FAQ; left decoration follows artwork coordinates. */
@media (min-width: 981px) {
  .home-page .cases-preview {
    overflow: visible;
  }
  .home-page .home-faq-teaser {
    background: transparent;
  }
  .home-page .home-faq-teaser::before {
    display: none;
  }
  .home-page .home-faq-grid {
    position: relative;
    z-index: 2;
  }
  .home-page .cases-preview::before {
    top: 0;
    bottom: auto;
    left: 0;
    background-position: left top;
    background-size: 100% 100%;
  }
  .home-page .cases-preview::after {
    top: auto;
    right: 0;
    background-position: right bottom;
    background-size: 100% 100%;
  }
}
@media (min-width: 981px) and (max-width: 1600px) {
  .home-page .cases-preview::before {
    width: 18.23vw;
    height: 35.52vw;
  }
  .home-page .cases-preview::after {
    bottom: -22.52vw;
    width: 22.4vw;
    height: 44.2vw;
  }
}
@media (min-width: 1601px) {
  .home-page .cases-preview::before {
    width: 18.23vw;
    height: 35.52vw;
  }
  .home-page .cases-preview::after {
    bottom: -22.52vw;
    width: 22.4vw;
    height: 44.2vw;
  }
}

/* Keep the FAQ action pair on one baseline with readable desktop labels. */
@media (min-width: 981px) {
  .home-page .home-faq-actions {
    align-items: center;
  }
  .home-page .home-faq-actions .btn,
  .home-page .home-faq-actions .btn-line {
    height: clamp(40px, 2.86vw, 55px);
    min-height: clamp(40px, 2.86vw, 55px);
    margin-top: 0;
    font-size: clamp(14px, 0.85vw, 16px);
    line-height: 1;
  }
  .home-page .home-faq-actions .line-bubble {
    width: clamp(18px, 1.2vw, 23px);
    height: clamp(18px, 1.2vw, 23px);
  }
}

/* Scale the 1920px desktop artwork proportionally on wider viewports. */
@media (min-width: 1601px) {
  :root {
    --container: 83.333vw;
  }
  .site-header {
    top: 2.25vw;
  }
  .header-inner {
    width: 83.958vw;
  }
  .brand {
    width: 13.385vw;
    margin-bottom: 1.146vw;
  }
  .desktop-nav {
    height: 3.333vw;
    gap: 2.292vw;
  }
  .desktop-nav .nav-dropdown > button,
  .desktop-nav > a {
    gap: 0.4vw;
    font-size: 1vw;
  }
  .desktop-nav img {
    width: 1.4vw;
    height: 1.4vw;
  }
  .hero {
    height: 43.385vw;
    min-height: 43.385vw;
  }
  .hero-bg {
    background-size: 100vw 43.385vw;
  }
  .hero-container {
    width: 83.333vw;
    padding-top: 9.115vw;
  }
  .hero-visual {
    padding-bottom: 3.802vw;
  }
  .hero-visual img {
    width: 42.604vw;
    margin-left: -0.417vw;
    transform: translateY(-0.677vw);
  }
  .hero-copy {
    padding: 1.979vw 0 2.344vw 1.406vw;
    transform: translateY(-1.25vw);
  }
  .hero-copy h1 {
    font-size: 2.24vw;
  }
  .hero-copy p {
    font-size: 1.354vw;
  }
  .hero-copy strong {
    font-size: 1.25vw;
  }
  .home-page .services-section {
    height: 35.208vw;
    min-height: 35.208vw;
    padding: 1.75vw 0 2.5vw;
  }
  .home-page .services-section .service-grid {
    width: 81.51vw;
    gap: 3.229vw;
  }
  .home-page .services-section .section-heading {
    margin-bottom: 2.344vw;
  }
  .home-page .services-section .section-heading h2 {
    font-size: 1.354vw;
  }
  .home-page .services-section .section-heading .en {
    font-size: 0.625vw;
  }
  .home-page .services-section .section-heading p {
    font-size: 0.833vw;
  }
  .home-page .services-section .service-card {
    height: 20.573vw;
    min-height: 20.573vw;
    padding: 1.458vw 1.042vw 0.938vw;
    border-width: 0.104vw;
  }
  .home-page .services-section .service-card img {
    width: 9.1vw;
    height: 9.1vw;
  }
  .home-page .services-section .service-card h3 {
    font-size: 1.15vw;
  }
  .home-page .services-section .service-card p {
    min-height: 3.3vw;
    font-size: 0.83vw;
  }
  .home-page .services-section .service-card .btn {
    width: 12.396vw;
    min-height: 2.45vw;
    padding: 0.45vw 1.2vw;
    font-size: 0.94vw;
  }
  .home-page .home-about {
    height: 41.615vw;
    min-height: 41.615vw;
    padding: 2.917vw 0 0.625vw;
  }
  .home-page .home-about-copy {
    transform: translateY(3.1vw);
  }
  .home-page .home-about-copy h2 {
    font-size: 1.67vw;
  }
  .home-page .home-about-copy h3 {
    margin-bottom: 1.15vw;
    font-size: 1.25vw;
  }
  .home-page .home-about-copy p {
    font-size: 0.94vw;
  }
  .home-page .trust-row {
    margin-top: 2.3vw;
    margin-bottom: 1.8vw;
    gap: 5.8vw;
    transform: translate(2.65vw, 0.2vw);
  }
  .home-page .trust-item {
    min-width: 6.15vw;
    font-size: 0.89vw;
  }
  .home-page .trust-item img {
    width: 5.83vw;
    height: 5.83vw;
  }
  .home-page .home-about-copy > .btn {
    width: 11.4vw;
    min-height: 2.97vw;
    transform: translate(-0.25vw, 1.75vw);
  }
  .home-page .home-about-visual img {
    width: 46.5vw;
    margin-left: 0;
    transform: translateY(-1.25vw);
  }
  .home-page .cases-preview {
    height: 40.625vw;
    min-height: 40.625vw;
    padding: 2.292vw 0 2.188vw;
  }
  .home-page .cases-preview > .container {
    width: 82.292vw;
  }
  .home-page .cases-preview .section-heading {
    height: 7.813vw;
    margin-bottom: 2.917vw;
  }
  .home-page .cases-preview .case-grid {
    gap: 3.438vw;
  }
  .home-page .cases-preview .case-card {
    height: 21.354vw;
    min-height: 21.354vw;
    padding: 0 1.563vw 1.354vw;
    border-width: 0.104vw;
    border-radius: 1.042vw;
  }
  .home-page .cases-preview .case-card h3 {
    padding: 1.198vw 0.417vw 1.302vw;
    font-size: 1.354vw;
  }
  .home-page .cases-preview .case-card h3::before {
    width: 1.979vw;
    height: 1.979vw;
    margin-right: 0.521vw;
  }
  .home-page .cases-preview .case-card p {
    margin-top: 0.781vw;
    font-size: 0.938vw;
  }
  .home-page .cases-preview .case-actions {
    margin-top: 2.917vw;
  }
  .home-page .cases-preview .case-actions .btn-gold {
    width: 13.542vw;
    min-height: 2.865vw;
    font-size: 0.729vw;
  }
  .home-page .home-faq-teaser {
    height: 22.5vw;
    min-height: 22.5vw;
    padding: 2.188vw 0;
  }
  .home-page .home-faq-grid {
    grid-template-columns: 1fr 25vw;
    gap: 4.167vw;
  }
  .home-page .home-faq-copy h2 {
    font-size: 1.615vw;
  }
  .home-page .home-faq-copy p {
    margin: 0.469vw 0;
    font-size: 0.729vw;
  }
  .home-page .home-faq-actions {
    margin-top: 2.448vw;
    gap: 1.25vw;
    transform: translateX(-0.26vw);
  }
  .home-page .home-faq-actions .btn,
  .home-page .home-faq-actions .btn-line {
    width: 13.542vw;
    height: 2.865vw;
    min-height: 2.865vw;
    padding: 0.521vw 1.458vw;
    font-size: 0.833vw;
  }
  .home-page .home-faq-actions .line-bubble {
    width: 1.198vw;
    height: 1.198vw;
  }
  .home-page .home-faq-visual img {
    width: 25.573vw;
    max-width: none;
    transform: translate(-3.177vw, 4.063vw);
  }
  .home-page .process-strip {
    height: 42vw;
    min-height: 42vw;
    padding: 2.604vw 0 2.865vw;
  }
  .home-page .process-strip-grid {
    grid-template-columns: 32.5% minmax(0, 1fr);
  }
  .home-page .process-strip-person {
    min-height: 29.375vw;
  }
  .home-page .process-strip-person img {
    bottom: -8.87vw;
    left: -8.6vw;
    width: 35.9vw;
    max-width: none;
  }
  .home-page .process-strip-content {
    text-align: center;
    transform: translateY(0.95vw);
  }
  .home-page .process-strip-content h2,
  .home-page .process-strip-content > p,
  .home-page .process-strip-note,
  .home-page .process-strip .btn-gold {
    margin-right: auto;
    margin-left: auto;
  }
  .home-page .process-strip-content h2 {
    margin-bottom: 1.563vw;
    font-size: 1.7vw;
  }
  .home-page .process-strip-content > p {
    margin-bottom: 2.763vw;
    font-size: 0.82vw;
    line-height: 1.75;
  }
  .home-page .process-steps {
    gap: 0.938vw;
  }
  .home-page .process-strip .process-step-card {
    min-height: 13.2vw;
    padding: 2.72vw 0.781vw 1.05vw;
    border-width: 0.104vw;
    border-radius: 1.042vw;
  }
  .home-page .process-strip .process-step-card .number {
    top: -1.02vw;
    width: 2.3vw;
    height: 2.3vw;
    border-width: 0.208vw;
    font-size: 1.12vw;
  }
  .home-page .process-strip .process-step-card img {
    width: 4.9vw;
    height: 4.9vw;
    margin-bottom: 0.625vw;
  }
  .home-page .process-strip .process-step-card h3 {
    font-size: 1.05vw;
  }
  .home-page .process-strip-note {
    margin-top: 1.458vw;
  }
  .home-page .process-strip-note p {
    margin-bottom: 0.417vw;
    font-size: 0.82vw;
    line-height: 1.7;
  }
  .home-page .process-strip .btn-gold {
    width: 13.542vw;
    min-height: 2.917vw;
    transform: translate(-1.198vw, 2.188vw);
  }
  .site-footer {
    min-height: 32.813vw;
    padding: 5.8vw 0 1.25vw;
  }
  .footer-curve {
    top: -7vw;
    height: 7vw;
  }
  .footer-bottom,
  .footer-inner {
    width: 92vw;
  }
  .site-footer .footer-inner {
    grid-template-columns: 41.5% 14% 41.5%;
    gap: 1.5%;
  }
  .site-footer .footer-logo {
    width: 14.5vw;
  }
  .site-footer .footer-tagline {
    margin-bottom: 1.2vw;
    font-size: 0.84vw;
    line-height: 1.55;
  }
  .site-footer .footer-qr {
    width: 8vw;
    flex-basis: 8vw;
  }
  .site-footer .footer-qr img {
    width: 8vw;
    flex-basis: 8vw;
  }
  .site-footer .footer-contact-row {
    gap: 1.2vw;
  }
  .site-footer .footer-contact-list p,
  .site-footer .footer-links a {
    font-size: 0.96vw;
    line-height: 1.65;
  }
  .site-footer .footer-contact-list img {
    width: 1.6vw;
    height: 1.6vw;
  }
  .site-footer .footer-links h2,
  .site-footer .footer-notes h2 {
    margin-bottom: 0.8vw;
    padding-bottom: 0.35vw;
    font-size: 1.1vw;
    line-height: 1.4;
  }
  .site-footer .footer-notes ol {
    font-size: 0.86vw;
    line-height: 1.72;
  }
  .site-footer .footer-bottom {
    margin-top: 1.25vw;
    font-size: 0.78vw;
    line-height: 1.65;
  }
  .back-to-top {
    right: 2.083vw;
    bottom: 2.083vw;
    width: 2.865vw;
    height: 2.865vw;
  }
}

/* Tablet / compact-desktop bridge: keep the process portrait fully visible. */
@media (min-width: 981px) and (max-width: 1440px) {
  .home-page .process-strip-grid {
    grid-template-columns: 36% minmax(0, 1fr);
  }
  .home-page .process-strip-person {
    position: relative;
    min-width: 0;
  }
  .home-page .process-strip-person img {
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
  }
  .desktop-line-tab {
    display: none;
  }
}

@media (min-width: 1441px) and (max-width: 2048px) {
  .home-page .process-strip-person img {
    left: calc((1440px - 100vw) * 0.29);
  }
}

/* Process strip: align title, intro, cards, notes and CTA to one center axis. */
@media (min-width: 981px) {
  .home-page .process-strip-content,
  .home-page .process-strip-content h2,
  .home-page .process-strip-content > p,
  .home-page .process-strip-note {
    width: 100%;
    text-align: center;
  }

  .home-page .process-strip-content h2,
  .home-page .process-strip-content > p,
  .home-page .process-strip-note,
  .home-page .process-strip .btn-gold {
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .process-strip .btn-gold {
    transform: translateY(43px);
  }
}

@media (min-width: 1601px) {
  .home-page .process-strip .btn-gold {
    transform: translateY(2.188vw);
  }
}

/* Footer artwork proportions from the 2048px desktop comp. */
@media (min-width: 981px) {
  .home-page .process-strip {
    height: 47.2vw;
    min-height: 47.2vw;
  }

  .site-footer {
    min-height: 0;
  }

  .site-footer .footer-curve {
    top: -12.8vw;
    height: 12.8vw;
    background-image: url(../images/00-hp/footer_curve.svg?v=20260817-clean97);
  }

  .site-footer .footer-inner,
  .site-footer .footer-bottom {
    width: 84vw;
  }

  .site-footer .footer-inner {
    grid-template-columns: 39% 16% 42%;
    gap: 1.5%;
  }

  .site-footer .footer-links h2,
  .site-footer .footer-notes h2 {
    display: flex;
    width: 10vw;
    min-width: 136px;
    min-height: 2vw;
    margin: 0 0 0.8vw;
    padding: 0.22vw 0.72vw;
    align-items: center;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(
      90deg,
      rgba(220, 132, 0, 0) 0%,
      rgba(220, 132, 0, 0.9) 22%,
      rgba(232, 145, 12, 0.9) 76%,
      rgba(232, 145, 12, 0) 100%
    );
    font-size: clamp(14px, 0.9vw, 18px);
    line-height: 1.25;
    white-space: nowrap;
  }

  .site-footer .footer-links h2 img,
  .site-footer .footer-notes h2 img {
    width: clamp(16px, 1vw, 20px);
    height: clamp(16px, 1vw, 20px);
    margin-right: 0.32vw;
  }

  .site-footer .footer-contact-list p,
  .site-footer .footer-links a {
    font-size: clamp(13px, 0.78vw, 16px);
  }

  .site-footer .footer-notes ol {
    font-size: clamp(12px, 0.7vw, 14px);
  }

  .site-footer .footer-facebook {
    width: clamp(44px, 2.65vw, 54px);
  }
}

@media (min-width: 1601px) {
  .home-page .process-strip {
    height: 47.2vw;
    min-height: 47.2vw;
  }

  .site-footer {
    min-height: 27.4vw;
    padding-top: 2.7vw;
    padding-bottom: 1.6vw;
  }


  .site-footer .footer-curve {
    top: -12.8vw;
    height: 12.8vw;
    background-image: url(../images/00-hp/footer_curve.svg?v=20260817-clean97);
  }

  .site-footer .footer-notes ol {
    font-size: 0.76vw;
    line-height: 1.72;
  }
}

@media (min-width: 1441px) and (max-width: 1600px) {
  .home-page .process-strip-person img {
    bottom: 5.5vw;
  }
}
