:root {
  --bg: #fff6fb;
  --surface: #ffffff;
  --text: #231f20;
  --muted: #6b5d66;
  --primary: #ff4d8d;
  --primary-2: #ff77a8;
  --primary-3: #ffd1e1;
  --ring: rgba(255, 77, 141, 0.35);
  --shadow: 0 18px 60px rgba(35, 31, 32, 0.12);
  --shadow-soft: 0 10px 30px rgba(35, 31, 32, 0.08);
  --radius: 18px;
  --radius-2: 24px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes pulseRing {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.35;
  }
  80% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Sans TC", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__content,
  .hero__media,
  .hero__card,
  .brand__nameMain,
  .wa-fab::after {
    animation: none !important;
  }
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container.header__inner {
  max-width: none;
  padding: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 246, 251, 0.75);
  border-bottom: 1px solid rgba(255, 77, 141, 0.12);
}

.header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.header__inner .brand {
  margin-left: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 86px;
  height: 86px;
  border-radius: 14px;
  object-fit: contain;
}

.brandTitle {
  margin: 0 auto;
  text-align: center;
  max-width: min(680px, calc(100% - 160px));
}

.brand__name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.brand__nameMain {
  font-weight: 900;
  letter-spacing: 0.2px;
  font-size: clamp(14px, 1.9vw, 18px);
  line-height: 1.05;
  background-image: linear-gradient(90deg, #ff2f7f 0%, #ff77a8 40%, #ffd1e1 80%, #ff2f7f 100%);
  background-size: 300% 100%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 3.2s linear infinite;
}

.brand__nameSub {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  line-height: 1.05;
  color: rgba(68, 34, 50, 0.7);
}

.navToggle {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 77, 141, 0.18);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
}

.navToggle:hover {
  background: rgba(255, 255, 255, 0.92);
}

.navToggle:active {
  transform: translateY(1px);
}

.navToggle:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), var(--shadow-soft);
}

.navToggle__icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: #442232;
  border-radius: 999px;
}

.navToggle__icon::before,
.navToggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #442232;
  border-radius: 999px;
}

.navToggle__icon::before {
  top: -6px;
}

.navToggle__icon::after {
  top: 6px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 77, 141, 0.10);
  color: var(--text);
}

.nav__link:active {
  transform: translateY(1px);
}

.nav__link--active {
  background: rgba(255, 77, 141, 0.12);
  color: #442232;
}

.nav__link--cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 10px 22px rgba(255, 77, 141, 0.28);
}

.nav__link--cta:hover {
  background: linear-gradient(135deg, #ff3a82 0%, #ff6fa1 100%);
}

.nav__link--cta::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-120%);
}

.nav__link--cta:hover::before {
  animation: sheen 900ms ease;
}

.hero {
  padding: 56px 0 34px;
  background-image: url("picture/bg.jpeg");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  overflow: visible;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 141, 0.10);
  border: 1px solid rgba(255, 77, 141, 0.22);
  color: #8b2a50;
  font-weight: 700;
  font-size: 13px;
}

.hero__title {
  margin: 14px 0 10px;
  font-size: clamp(12px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero__subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.hero__content {
  position: relative;
  grid-column: 1 / -1;
  z-index: 1;
  animation: fadeUp 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__media {
  position: relative;
  z-index: 1;
  animation: fadeUp 850ms cubic-bezier(0.2, 0.8, 0.2, 1) 120ms both;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.btn--primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 14px 26px rgba(255, 77, 141, 0.25);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-120%);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(255, 77, 141, 0.28);
}

.btn--primary:hover::before {
  animation: sheen 900ms ease;
}

.btn:active {
  transform: translateY(0);
  scale: 0.99;
}

.btn--ghost {
  color: #8b2a50;
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 77, 141, 0.22);
}

.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.92);
}

.btn--full {
  width: 100%;
}

.hero__highlights {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 31, 32, 0.06);
  color: #5b3b49;
  font-weight: 700;
  font-size: 13px;
}

.hero__media {
  position: relative;
}

.hero__card {
  border-radius: var(--radius-2);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid rgba(255, 77, 141, 0.12);
  animation: floaty 8s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease;
}

.hero__image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 80px rgba(35, 31, 32, 0.16);
  border-color: rgba(255, 77, 141, 0.18);
}

.hero__card:hover .hero__image {
  transform: scale(1.035);
}

.hero__cardOverlay {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.90) 0%, rgba(255, 255, 255, 0.70) 100%);
}

.hero__stat {
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(35, 31, 32, 0.06);
}

.hero__statValue {
  font-weight: 900;
  font-size: 18px;
}

.hero__statLabel {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.section {
  padding: 64px 0;
}

.section--tint {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.section__title {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.section__desc {
  margin: 0;
  color: var(--muted);
  max-width: 74ch;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid--3 .card__img {
  object-fit: contain;
  object-position: center;
  background: rgba(255, 255, 255, 0.55);
}

.grid--3 .card:hover .card__img {
  transform: scale(1);
}

.card {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 12px;
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.14);
  border-color: rgba(255, 77, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(35, 31, 32, 0.06);
  transform: scale(1);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover .card__img {
  transform: scale(1.03);
}

.card__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1px;
}

.card__text {
  margin: 0;
  color: var(--muted);
}

.feature {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.13);
  border-color: rgba(255, 77, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.feature__icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 77, 141, 0.14);
  border: 1px solid rgba(255, 77, 141, 0.22);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #8b2a50;
  flex: 0 0 auto;
  transition: transform 160ms ease, background 160ms ease;
}

.feature:hover .feature__icon {
  transform: rotate(-6deg) scale(1.05);
  background: rgba(255, 77, 141, 0.18);
}

.feature__title {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.feature__text {
  margin: 0;
  color: var(--muted);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.13);
  border-color: rgba(255, 77, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.step__num {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex: 0 0 auto;
  box-shadow: 0 12px 20px rgba(255, 77, 141, 0.22);
  transition: transform 160ms ease;
}

.step:hover .step__num {
  transform: rotate(3deg) scale(1.03);
}

.step__title {
  margin: 0 0 6px 0;
  font-size: 16px;
}

.step__text {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 10px;
}

.faq__item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 10px 14px;
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.faq__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.12);
  border-color: rgba(255, 77, 141, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.faq__q {
  cursor: pointer;
  font-weight: 800;
  color: #442232;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "▾";
  color: rgba(68, 34, 50, 0.65);
  font-weight: 900;
  transition: transform 160ms ease;
}

details[open] .faq__q::after {
  transform: rotate(180deg);
}

.faq__a {
  color: var(--muted);
  padding: 6px 0 12px;
}

details[open] .faq__a {
  animation: fadeUp 280ms ease both;
}

.caseCarousel {
  position: relative;
  --gap: 18px;
}

.caseCarousel__viewport {
  overflow: hidden;
}

.caseCarousel__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 31, 32, 0.10);
  box-shadow: var(--shadow-soft);
  color: #442232;
  font-weight: 900;
  font-size: 26px;
  line-height: 1;
  z-index: 2;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
}

.caseCarousel__btn:hover {
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.14);
}

.caseCarousel__btn:active {
  transform: translateY(-50%) scale(0.98);
}

.caseCarousel__btn:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), var(--shadow-soft);
}

.caseCarousel__btn--prev {
  left: -10px;
}

.caseCarousel__btn--next {
  right: -10px;
}

.caseCarousel__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
}

.caseCarousel__track > * {
  flex: 0 0 calc((100% - var(--gap)) / 2);
}

.person {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.person:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(35, 31, 32, 0.13);
  border-color: rgba(255, 77, 141, 0.14);
  background: rgba(255, 255, 255, 0.86);
}

.person__avatar {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(35, 31, 32, 0.06);
  flex: 0 0 auto;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.person:hover .person__avatar {
  transform: scale(1.04);
}

.person__name {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.person__role {
  margin: 2px 0 10px;
  color: #7a1e45;
  font-weight: 900;
  font-size: 16px;
}

.person__text {
  margin: 0;
  color: var(--muted);
}

.contact {
  padding-bottom: 86px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.contact__info,
.contact__formWrap {
  border-radius: var(--radius-2);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(35, 31, 32, 0.06);
  box-shadow: var(--shadow);
  padding: 18px;
  transition: transform 160ms ease, box-shadow 220ms ease, border-color 160ms ease, background 160ms ease;
}

.contact__info:hover,
.contact__formWrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 80px rgba(35, 31, 32, 0.16);
  border-color: rgba(255, 77, 141, 0.14);
  background: rgba(255, 255, 255, 0.88);
}

.contact__title {
  margin: 0 0 10px 0;
  font-size: 26px;
}

.contact__text {
  margin: 0;
  color: var(--muted);
}

.contact__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 77, 141, 0.10);
  border: 1px solid rgba(255, 77, 141, 0.22);
  color: #8b2a50;
  font-weight: 800;
  font-size: 13px;
}

.contact__meta {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.metaRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(35, 31, 32, 0.06);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.metaRow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 77, 141, 0.12);
  background: rgba(255, 255, 255, 0.86);
}

.metaRow__k {
  color: var(--muted);
  font-weight: 700;
}

.metaRow__v {
  font-weight: 800;
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-weight: 800;
  color: #442232;
  font-size: 13px;
}

.field__input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(35, 31, 32, 0.10);
  background: rgba(255, 255, 255, 0.90);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.field__input:focus {
  border-color: rgba(255, 77, 141, 0.52);
  box-shadow: 0 0 0 4px var(--ring);
  background: #ffffff;
}

.field__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__hint {
  margin: 0;
  color: #8b2a50;
  font-weight: 800;
  min-height: 1.6em;
}

.footer {
  padding: 28px 0 40px;
  border-top: 0;
  background: transparent;
}

.footer__inner {
  display: grid;
  gap: 10px;
}

.footer__text {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer__copy {
  margin: 0;
  font-weight: 800;
  color: #442232;
  font-size: 13px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 6px 0;
}

.footer__link {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  transition: color 160ms ease;
}

.footer__link:hover {
  color: var(--primary);
}

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(35, 31, 32, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
  z-index: 80;
  transition: transform 120ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wa-fab::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140%;
  height: 140%;
  border-radius: 999px;
  border: 2px solid rgba(255, 77, 141, 0.25);
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  animation: pulseRing 2.6s ease-out infinite;
  pointer-events: none;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 70px rgba(35, 31, 32, 0.16);
  background: #ffffff;
}

.wa-fab:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring), var(--shadow);
}

.wa-fab__icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 980px) {
  .navToggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(35, 31, 32, 0.08);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }

  .header--navOpen .nav {
    display: flex;
  }

  .nav__link {
    padding: 12px 14px;
    width: 100%;
  }

  .nav__link--cta {
    justify-content: center;
  }

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

  .hero__image {
    height: 360px;
  }

  .caseCarousel__track > * {
    flex-basis: 100%;
  }

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

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

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

@media (max-width: 560px) {
  .brand__name {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

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

  .wa-fab {
    right: 14px;
    bottom: 14px;
  }
}
