:root {
  --ink: #1e2528;
  --muted: #667075;
  --paper: #fbfaf6;
  --line: #d9ddd5;
  --green: #2f6f4e;
  --sage: #dfe9d8;
  --coral: #e8704f;
  --gold: #c89b3c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(30, 37, 40, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #03070b;
  font-family: "Noto Sans TC", system-ui, sans-serif;
  line-height: 1.6;
}

main {
  background: #03070b;
}

main > section:not(.hero):not(.why-section):not(.fit-section):not(.task-section):not(.support-section):not(.flow-section):not(.faq-section) {
  display: none;
}

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

.site-header {
  display: none !important;
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.84);
  box-shadow: 0 12px 40px rgba(30, 37, 40, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
}

.site-nav {
  justify-content: center;
  gap: 22px;
  color: #354044;
  font-size: 0.94rem;
  font-weight: 700;
}

.header-action {
  justify-self: end;
  min-width: 104px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero {
  position: relative;
  width: min(100%, 430px);
  min-height: 100svh;
  margin: 0 auto;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 38px 18px 48px;
  color: #fff7dc;
  background: #050505;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.55);
}

.hero::after,
.why-section::after,
.fit-section::after,
.poster-section::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 74px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 7, 11, 0), rgba(3, 7, 11, 0.82) 58%, #03070b 100%);
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: translateY(-70px) scale(1.08);
  transform-origin: center top;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.22) 32%, rgba(0, 0, 0, 0.92) 78%),
    radial-gradient(circle at 48% 70%, rgba(214, 164, 72, 0.22), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06) 55%, rgba(0, 0, 0, 0.34));
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  transform: translateY(-100px);
}

.agent-slogan {
  position: absolute;
  top: -55svh;
  left: 0;
  margin: 0;
  color: rgba(255, 248, 225, 0.78);
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 34px;
  margin: 0 auto 10px;
  border: 1px solid rgba(244, 213, 139, 0.46);
  border-radius: 999px;
  color: #f7d98b;
  background: rgba(0, 0, 0, 0.34);
  font-size: 0.86rem;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero-title {
  margin: 0;
  font-size: clamp(3.6rem, 18vw, 5.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
  color: #ffe6a3;
  text-shadow:
    0 3px 0 rgba(108, 65, 9, 0.65),
    0 8px 24px rgba(0, 0, 0, 0.9),
    0 0 22px rgba(229, 175, 79, 0.26);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 8px;
  font-size: 1.3rem;
  line-height: 1.25;
}

.hero-copy {
  width: 100%;
  margin: 10px 0 0;
  color: #fff0bd;
  font-size: 1.05rem;
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 28px;
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255, 225, 151, 0.2);
  border-bottom: 1px solid rgba(255, 225, 151, 0.2);
}

.hero-features div {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.feature-symbol {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffe09a;
  font-size: 1.15rem;
}

.feature-icon-img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-features strong {
  color: #fff4d1;
  font-size: 0.72rem;
  line-height: 1.2;
}

.hero-actions {
  justify-content: center;
  margin-top: 22px;
}

.floating-action {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 14px;
  width: min(390px, calc(100% - 40px));
  transform: translateX(-50%);
  pointer-events: none;
}

.floating-action .hero-button {
  pointer-events: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.primary.hero-button {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255, 242, 195, 0.58);
  border-radius: 16px;
  color: #241704;
  background: linear-gradient(180deg, #ffe99a, #d59a2e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 12px 24px rgba(0, 0, 0, 0.45);
  font-size: 1.05rem;
}

.button.primary.hero-button span {
  font-size: 1.5rem;
  line-height: 1;
}

.why-section {
  position: relative;
  width: min(100%, 430px);
  min-height: 88svh;
  margin: -176px auto 0;
  overflow: hidden;
  padding: 86px 18px 104px;
  color: #fff7dc;
  background: #03070b;
}

.why-image,
.why-scrim {
  position: absolute;
  inset: 0;
}

.why-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-130px) scale(1.08);
  transform-origin: center top;
}

.why-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.26) 44%, rgba(0, 0, 0, 0.5) 100%),
    radial-gradient(circle at 50% 43%, rgba(80, 183, 255, 0.13), transparent 36%);
}

.why-content {
  position: relative;
  z-index: 3;
}

.why-heading {
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.9);
}

.why-heading h2 {
  margin: 0;
  color: #ffe3a0;
  font-size: clamp(1.9rem, 9vw, 2.6rem);
  font-weight: 900;
  line-height: 1.18;
}

.why-heading p {
  margin: 8px 0 0;
  color: #fff0c4;
  font-size: 0.96rem;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.why-grid article {
  min-height: 128px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 15px 9px;
  border: 1px solid rgba(117, 204, 255, 0.26);
  border-radius: 8px;
  background: rgba(4, 16, 24, 0.72);
  box-shadow:
    inset 0 0 22px rgba(73, 179, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28);
  text-align: center;
  backdrop-filter: blur(5px);
}

.why-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffd56f;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 190, 67, 0.34);
}

.why-icon-img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.why-grid h3 {
  margin: 9px 0 4px;
  color: #fff3d0;
  font-size: 1rem;
  font-weight: 900;
}

.why-grid p {
  margin: 0;
  color: rgba(255, 247, 220, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
}

.fit-section {
  position: relative;
  width: min(100%, 430px);
  min-height: 88svh;
  margin: -96px auto 0;
  overflow: hidden;
  padding: 76px 18px 104px;
  color: #fff7dc;
  background: #03070b;
}

.fit-image,
.fit-scrim {
  position: absolute;
  inset: 0;
}

.fit-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(50) scale(1);
  transform-origin: center top;
}

.fit-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.7) 100%),
    radial-gradient(circle at 50% 35%, rgba(213, 154, 46, 0.12), transparent 38%);
}

.fit-content {
  position: relative;
  z-index: 3;
  transform: translateY(-45px);
}

.fit-heading {
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.92);
}

.fit-heading h2 {
  margin: 0;
  color: #ffe3a0;
  font-size: clamp(1.82rem, 8.4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.18;
}

.fit-heading p {
  width: min(310px, 100%);
  margin: 10px auto 0;
  color: #fff0c4;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.6;
}

.fit-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.fit-list article {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 88px;
  padding: 10px;
  border: 0;
  border-radius: 14px;
  background: rgba(8, 22, 32, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 28px rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(13px) saturate(1.24);
}

.fit-list article::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 96px;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(188, 228, 255, 0.58) 42%,
    rgba(255, 242, 196, 0.42) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: card-border-spin 8s linear infinite;
}

.fit-list article::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.08)),
    radial-gradient(at 12% 0%, rgba(255, 255, 255, 0.2) 0, transparent 44%),
    radial-gradient(at 100% 100%, rgba(117, 204, 255, 0.12) 0, transparent 60%),
    rgba(5, 18, 27, 0.66);
}

.fit-list article > * {
  position: relative;
  z-index: 1;
}

@keyframes card-border-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.fit-thumb {
  width: 88px;
  height: 72px;
  border-radius: 7px;
  display: block;
  object-fit: cover;
  object-position: center;
  box-shadow: inset 0 0 28px rgba(0, 0, 0, 0.32);
}

.fit-list h3 {
  margin: 0 0 5px;
  color: #fff3d0;
  font-size: 1.06rem;
  font-weight: 900;
}

.fit-list p {
  margin: 0;
  color: rgba(255, 247, 220, 0.76);
  font-size: 0.84rem;
  font-weight: 700;
}

.poster-section {
  position: relative;
  width: min(100%, 430px);
  min-height: 88svh;
  margin: -38px auto 0;
  overflow: hidden;
  padding: 34px 18px 108px;
  color: #fff7dc;
  background: #03070b;
}

.why-section::before,
.fit-section::before,
.poster-section::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
  height: 58px;
  pointer-events: none;
  background:
    linear-gradient(180deg, #03070b 0%, rgba(3, 7, 11, 0.82) 42%, rgba(3, 7, 11, 0) 100%);
}

.poster-image,
.poster-scrim {
  position: absolute;
  inset: 0;
}

.poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-section .poster-image {
  transform: scale(1.08);
  transform-origin: center bottom;
}

.task-section .poster-image {
  transform: translateY(0) scale(1);
  transform-origin: center top;
}

.task-section .poster-content {
  transform: translateY(-30px);
}

.faq-section,
.testimonial-section,
.final-section {
  margin-top: -62px;
}

.poster-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.62) 100%),
    radial-gradient(circle at 50% 38%, rgba(213, 154, 46, 0.1), transparent 36%);
}

.poster-content {
  position: relative;
  z-index: 3;
}

.poster-heading {
  text-align: center;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.92);
}

.poster-heading h2 {
  margin: 0;
  color: #ffe3a0;
  font-size: clamp(1.82rem, 8.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.18;
}

.poster-heading p {
  margin: 9px 0 0;
  color: #fff0c4;
  font-size: 0.95rem;
  font-weight: 800;
}

.task-list {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.task-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 82px;
  padding: 11px 12px;
  border: 1px solid rgba(117, 204, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 18, 27, 0.78);
  box-shadow:
    inset 0 0 22px rgba(73, 179, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
}

.task-list span,
.flow-list > li > span {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #140e05;
  background: linear-gradient(180deg, #ffe597, #d49a34);
  font-weight: 900;
  box-shadow: 0 0 18px rgba(255, 201, 92, 0.28);
}

.task-list span {
  width: 34px;
  height: 34px;
  font-size: 1rem;
}

.task-list h3,
.flow-list h3 {
  margin: 0 0 4px;
  color: #fff3d0;
  font-size: 1rem;
  font-weight: 900;
}

.task-list p,
.flow-list p {
  margin: 0;
  color: rgba(255, 247, 220, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.support-grid article {
  min-height: 108px;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.support-card-img {
  display: block;
  width: 100%;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.support-grid span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffd56f;
  font-size: 1.28rem;
  font-weight: 900;
}

.support-grid h3 {
  margin: 6px 0 3px;
  color: #fff3d0;
  font-size: 0.9rem;
  font-weight: 900;
}

.support-grid p {
  margin: 0;
  color: rgba(255, 247, 220, 0.74);
  font-size: 0.7rem;
  font-weight: 700;
}

.flow-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 22px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 224, 154, 0.72), rgba(255, 224, 154, 0.08));
}

.flow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
}

.flow-list > li > span {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  font-size: 1rem;
}

.flow-list li > div {
  min-height: 62px;
  display: grid;
  align-content: center;
  padding: 10px 12px;
  border: 1px solid rgba(117, 204, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 18, 27, 0.78);
  box-shadow:
    inset 0 0 22px rgba(73, 179, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
}

.faq-list {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.faq-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  min-height: 62px;
  padding: 8px 10px;
  border: 1px solid rgba(117, 204, 255, 0.2);
  border-radius: 8px;
  background: rgba(5, 18, 27, 0.8);
  box-shadow:
    inset 0 0 20px rgba(73, 179, 255, 0.07),
    0 10px 22px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(5px);
}

.faq-list span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: #150f05;
  background: linear-gradient(180deg, #ffe597, #d49a34);
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-list h3 {
  margin: 0 0 3px;
  color: #fff3d0;
  font-size: 0.86rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  color: rgba(255, 247, 220, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.35;
}

.faq-list {
  gap: 10px;
  margin-top: 24px;
}

.faq-item {
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 26px rgba(14, 36, 68, 0.12);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  color: #263556;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.faq-question {
  display: block;
  width: auto;
  height: auto;
  min-width: 0;
  color: #263556;
  background: transparent;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  place-items: initial;
}

.faq-item summary .faq-question {
  display: block;
  width: auto;
  height: auto;
  color: #263556;
  background: transparent;
  border-radius: 0;
  place-items: initial;
}

.user-icon {
  color: #5d91ff;
  background: #e7f0ff;
}

.lock-icon {
  color: #9367ff;
  background: #f0e9ff;
}

.card-icon {
  color: #21b98f;
  background: #dcf8ef;
}

.service-icon {
  color: #ff8a4a;
  background: #ffe9dd;
}

.shield-icon {
  color: #4f8fff;
  background: #e2efff;
}

.faq-arrow {
  justify-self: end;
  color: #316dcf;
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item > p {
  margin: 0 10px 10px;
  padding: 12px 14px;
  border-radius: 8px;
  color: #60708d;
  background: #edf5ff;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 13px;
  min-height: 122px;
  padding: 10px;
  border: 1px solid rgba(117, 204, 255, 0.22);
  border-radius: 8px;
  background: rgba(5, 18, 27, 0.8);
  box-shadow:
    inset 0 0 22px rgba(73, 179, 255, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(5px);
}

.person-thumb {
  width: 92px;
  height: 102px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 236, 185, 0.86) 0 12%, transparent 13%),
    linear-gradient(145deg, rgba(214, 154, 70, 0.68), rgba(8, 20, 30, 0.92)),
    linear-gradient(45deg, #20323a, #1a1718);
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.34);
}

.person-two {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 236, 185, 0.86) 0 12%, transparent 13%),
    linear-gradient(145deg, rgba(56, 128, 159, 0.7), rgba(8, 20, 30, 0.92)),
    linear-gradient(45deg, #18313d, #252523);
}

.person-three {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 236, 185, 0.86) 0 12%, transparent 13%),
    linear-gradient(145deg, rgba(186, 128, 82, 0.72), rgba(8, 20, 30, 0.92)),
    linear-gradient(45deg, #30211d, #172832);
}

.testimonial-list h3 {
  margin: 4px 0 7px;
  color: #fff3d0;
  font-size: 0.95rem;
  font-weight: 900;
}

.testimonial-list p {
  margin: 0;
  color: rgba(255, 247, 220, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.55;
}

.final-section .poster-scrim {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 58% 42%, rgba(213, 154, 46, 0.12), transparent 34%);
}

.final-section {
  min-height: 100svh;
  padding-bottom: 36px;
}

.final-content {
  min-height: 0;
  display: block;
}

.final-heading {
  text-align: center;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.92);
}

.final-heading h2 {
  margin: 0;
  color: #ffe3a0;
  font-size: clamp(2.35rem, 12vw, 3.35rem);
  font-weight: 900;
  line-height: 1.2;
}

.final-heading p {
  margin: 14px 0 0;
  color: #fff0c4;
  font-size: 1.02rem;
  font-weight: 900;
}

.contact-buttons {
  display: grid;
  gap: 10px;
  margin-top: 360px;
  margin-bottom: 0;
}

.contact-button {
  display: grid;
  min-height: 50px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 12px 26px rgba(0, 0, 0, 0.34);
}

.contact-button.line {
  background: linear-gradient(180deg, #37e46f, #08b94f);
}

.contact-button.instagram {
  background: linear-gradient(90deg, #8d3cff, #f05aa9, #ffbd4a);
}

.contact-button.telegram {
  background: linear-gradient(180deg, #43c7ff, #178edc);
}

/* Fourth section manual position controls */
.task-section .poster-image {
  transform: translateY(0) scale(1) !important;
  transform-origin: center top;
}

.task-section .poster-content {
  transform: translateY(-30px) !important;
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats div {
  min-height: 122px;
  padding: 28px max(24px, calc((100vw - 1120px) / 2));
  background: var(--paper);
}

.stats strong {
  display: block;
  color: var(--coral);
  font-size: 1.05rem;
}

.stats span {
  display: block;
  margin-top: 10px;
  font-size: 1.24rem;
  font-weight: 900;
}

.section,
.split-section,
.contact-band {
  padding: 92px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 42px;
}

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

.feature,
.work-list article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(30, 37, 40, 0.06);
}

.feature-icon {
  color: var(--gold);
  font-weight: 900;
}

.feature p,
.work-list p,
.contact-band p,
.timeline span {
  color: var(--muted);
}

.split-section {
  background: #eef2e8;
}

.work-list {
  display: grid;
  gap: 14px;
}

.work-list article {
  min-height: auto;
  display: grid;
  grid-template-columns: 150px 1fr 1.1fr;
  gap: 22px;
  align-items: center;
}

.work-list span {
  color: var(--coral);
  font-size: 0.88rem;
  font-weight: 900;
}

.work-list h3,
.work-list p {
  margin: 0;
}

.process-section {
  background: var(--paper);
}

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

.timeline li {
  position: relative;
  min-height: 190px;
  padding: 28px;
  border-left: 4px solid var(--green);
  background: var(--sage);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
  color: var(--white);
  background: var(--ink);
}

.contact-band .eyebrow,
.contact-band p {
  color: #c6d7cb;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-size: 0.94rem;
}

.site-footer {
  display: none;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(24px, calc((100vw - 1120px) / 2));
  color: var(--muted);
  background: var(--paper);
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    min-width: auto;
  }

  .stats,
  .feature-grid,
  .timeline,
  .contact-band,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .stats div {
    padding: 24px;
  }

  .section,
  .split-section,
  .contact-band {
    padding: 70px 24px;
  }

  .work-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-inline: 20px;
  }

  .button {
    width: 100%;
  }

  .contact-band {
    grid-template-columns: 1fr;
  }
}

/* Fourth section manual position controls.
   Change these values only; include px on vertical movement. */
.task-section {
  --task-bg-y: 0px;
  --task-bg-scale: 1;
  --task-content-y: -25px;
}

.task-section .poster-image {
  transform: translateY(var(--task-bg-y)) scale(var(--task-bg-scale)) !important;
  transform-origin: center top;
}

.task-section .poster-content {
  transform: translateY(var(--task-content-y)) !important;
}

/* Fifth section manual position controls.
   Change these values only; include px on vertical movement. */
.support-section {
  --support-section-y: -210px;
  --support-bg-y: 0px;
  --support-bg-scale: 1;
  --support-content-y: 25px;
  margin-top: var(--support-section-y);
}

.support-section .poster-image {
  transform: translateY(var(--support-bg-y)) scale(var(--support-bg-scale)) !important;
  transform-origin: center top;
}

.support-section .poster-content {
  transform: translateY(var(--support-content-y)) !important;
}

/* Sixth section manual position controls.
   Change these values only; include px on vertical movement. */
.flow-section {
  --flow-bg-y: -140px;
  --flow-bg-scale: 1.12;
  --flow-content-y: 0px;
}

.flow-section .poster-image {
  transform: translateY(var(--flow-bg-y)) scale(var(--flow-bg-scale)) !important;
  transform-origin: center top;
}

.flow-section .poster-content {
  transform: translateY(var(--flow-content-y)) !important;
}

/* Seventh section manual position controls.
   Change these values only; include px on vertical movement. */
.faq-section {
  --faq-section-y: -92px;
  --faq-bg-y: -30px;
  --faq-bg-scale: 1;
  --faq-content-y: -24px;
  margin-top: var(--faq-section-y);
}

.faq-section .poster-image {
  transform: translateY(var(--faq-bg-y)) scale(var(--faq-bg-scale)) !important;
  transform-origin: center top;
}

.faq-section .poster-content {
  transform: translateY(var(--faq-content-y)) !important;
}
