:root {
  color-scheme: light;
  --ink: #0e1628;
  --muted: #5d6474;
  --line: #e8e9ee;
  --paper: #ffffff;
  --soft: #f8f8fb;
  --soft-warm: #fff5ef;
  --pink: #f6105c;
  --red: #ff314d;
  --orange: #ff6b35;
  --gold: #c9962d;
  --green: #14a56a;
  --navy: #111a2d;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang TC", "Microsoft JhengHei", "Noto Sans TC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

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

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

.va-icon {
  flex: 0 0 auto;
  stroke-width: 2.05;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(232, 233, 238, 0.85);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.08);
}

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

.brand__mark {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(246, 16, 92, 0.18);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.1;
  white-space: nowrap;
}

.brand__text span {
  color: var(--muted);
  font-size: 0.78rem;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: #252b3a;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.menu-toggle {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
}

@media (min-width: 881px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 20px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.btn--primary {
  background: linear-gradient(120deg, var(--orange), var(--pink));
  color: white;
  box-shadow: 0 14px 30px rgba(246, 16, 92, 0.24);
}

.btn--primary:hover {
  box-shadow: 0 18px 40px rgba(246, 16, 92, 0.3);
}

.btn--ghost {
  background: white;
  color: var(--pink);
  border-color: rgba(246, 16, 92, 0.28);
}

.btn--ghost:hover {
  background: #fff7fa;
}

.btn--wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.btn--wa:hover {
  background: #20bd5a;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  min-height: min(680px, calc(100svh - 82px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 70px) 0 clamp(30px, 4vw, 46px);
}

.hero::before,
.hero::after,
.services::after,
.why::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  top: 80px;
  right: -70px;
  width: 340px;
  height: 170px;
  opacity: 0.32;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 107, 53, 0.38) 15px 17px),
    transparent;
  transform: rotate(-3deg);
}

.hero::after {
  right: 20%;
  bottom: 50px;
  width: 240px;
  height: 150px;
  opacity: 0.22;
  background:
    repeating-linear-gradient(135deg, transparent 0 12px, rgba(246, 16, 92, 0.38) 13px 15px),
    transparent;
}

.hero__content {
  position: relative;
  z-index: 1;
  animation: heroIntro 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 6vw, 4.85rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h1 em {
  background: linear-gradient(110deg, var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #31394a;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero__badges span::before {
  width: 9px;
  height: 9px;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  border-radius: 50%;
  content: "";
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 460px;
  animation: heroIntro 780ms ease both 120ms;
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 1.12 / 1;
}

.visual-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(330px, calc(100% - 44px));
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
}

.visual-card span {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
}

.visual-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.dashboard-metric,
.chart-card {
  overflow: hidden;
  min-height: 148px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(232, 233, 238, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.dashboard-metric--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  min-height: auto;
  animation: floatPanel 5.8s ease-in-out infinite;
}

.dashboard-metric span,
.chart-card__head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-metric strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.15;
}

.chart-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.chart-card__head strong {
  color: var(--green);
  font-size: 0.86rem;
}

.line-chart {
  width: 100%;
  height: auto;
}

.grid-line {
  stroke: rgba(14, 22, 40, 0.08);
  stroke-width: 1;
}

.line-chart__shadow {
  fill: none;
  stroke: rgba(246, 16, 92, 0.16);
  stroke-width: 12;
}

.line-chart__line {
  fill: none;
  stroke: url("#lineGradient");
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  stroke-width: 5;
  animation: drawLine 2s ease forwards 400ms;
}

.donut {
  width: 104px;
  aspect-ratio: 1;
  margin: 2px auto 14px;
  background:
    radial-gradient(circle at center, white 0 43%, transparent 44%),
    conic-gradient(var(--pink) 0 38%, var(--orange) 38% 67%, var(--gold) 67% 84%, #37a2ff 84% 100%);
  border-radius: 50%;
  animation: rotateDonut 9s linear infinite;
}

.legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend__dot--pink {
  background: var(--pink);
}

.legend__dot--orange {
  background: var(--orange);
}

.legend__dot--gold {
  background: var(--gold);
}

.bar-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.82rem;
}

.bar-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: #f0f1f4;
  border-radius: 999px;
}

.bar-row i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--orange), var(--pink));
  border-radius: inherit;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  animation: growBar 1.4s ease forwards 650ms;
}

.chart-card--check p {
  position: relative;
  margin: 10px 0 0;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.chart-card--check p::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.stats-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 40px));
  margin: -20px auto 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.1);
}

.stat {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 112px;
  padding: 18px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--line);
}

.stat strong {
  color: var(--pink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.stat span:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 118px) 0;
}

.section__intro,
.about-grid,
.values-grid,
.wide-visual,
.services-layout,
.process-steps,
.why-showcase,
.why-grid,
.contact__inner,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section__intro {
  max-width: 780px;
  margin-bottom: 38px;
}

.section__intro h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.15;
}

.section__intro p,
.contact-copy > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.about {
  background:
    linear-gradient(180deg, white 0%, #fff 45%, #fafbfc 45%, #fafbfc 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.section-visual {
  min-height: 420px;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.story-panel,
.mission-list article,
.values-grid article,
.service-card,
.why-grid article,
.process-steps article {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.story-panel {
  padding: clamp(26px, 4vw, 40px);
}

.story-panel p {
  margin-bottom: 18px;
}

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

.tick-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  font-weight: 800;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  color: var(--pink);
  content: "✓";
  font-weight: 900;
}

.story-panel h3,
.mission-list h3,
.values-grid h3,
.why-grid h3,
.process-steps h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.story-panel p,
.mission-list p,
.values-grid p,
.why-grid p,
.process-steps p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--pink);
  font-weight: 900;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.mission-list {
  display: grid;
  gap: 18px;
}

.mission-list article,
.why-grid article {
  padding: 24px;
}

.icon-chip {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--pink);
  background: #fff0f5;
  border: 1px solid rgba(246, 16, 92, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
}

.icon-chip::after,
.service-card__icon::after {
  position: absolute;
  inset: auto -10px -12px auto;
  width: 34px;
  height: 34px;
  background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(255, 107, 53, 0.32) 6px 8px);
  content: "";
  opacity: 0.8;
}

.icon-chip svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.values-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.values-grid article {
  padding: 24px;
}

.services {
  background: var(--soft);
  overflow: hidden;
}

.services::after {
  right: -80px;
  bottom: 60px;
  width: 310px;
  height: 220px;
  opacity: 0.28;
  background:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(246, 16, 92, 0.36) 14px 16px),
    transparent;
}

.services-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 24px;
  align-items: start;
}

.wide-visual {
  z-index: 1;
  height: clamp(260px, 38vw, 430px);
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  width: 100%;
  min-height: 138px;
  padding: 20px;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card.is-active {
  border-color: rgba(246, 16, 92, 0.34);
  box-shadow: 0 18px 44px rgba(246, 16, 92, 0.12);
  transform: translateY(-3px);
}

.service-card__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--pink);
  background: #fff0f5;
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card__icon svg {
  position: relative;
  z-index: 1;
  width: 25px;
  height: 25px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.35;
}

.service-card p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card span:last-child {
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 900;
}

.service-detail {
  position: sticky;
  top: 98px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 26, 45, 0.2);
}

.service-detail__head {
  margin-bottom: 24px;
}

.detail-kicker {
  color: #ffbd8a;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-detail h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
}

.service-detail p {
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-columns h4 {
  margin: 0 0 12px;
  color: #ffbd8a;
  font-size: 0.95rem;
}

.detail-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-columns li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.detail-columns li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.service-detail__cta {
  width: 100%;
  margin-top: 26px;
}

.process {
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-visual {
  height: clamp(220px, 32vw, 350px);
}

.process-steps article {
  padding: 24px;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: white;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  border-radius: 50%;
  font-weight: 900;
}

.why {
  background: linear-gradient(180deg, #fff 0%, #fff7f2 100%);
}

.why::before {
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 16, 92, 0.35), transparent);
}

.why-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.why-showcase .section-visual {
  min-height: auto;
}

.why-showcase .why-grid {
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.contact {
  padding: clamp(72px, 10vw, 112px) 0;
  background:
    linear-gradient(135deg, rgba(17, 26, 45, 0.96), rgba(17, 26, 45, 0.92)),
    repeating-linear-gradient(135deg, transparent 0 15px, rgba(255, 107, 53, 0.4) 16px 18px);
  color: white;
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact-visual {
  grid-column: 1;
  min-height: 260px;
  margin-top: 28px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.contact-form {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.contact-copy .eyebrow {
  color: #ffbd8a;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a,
.contact-list p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.contact-list svg {
  margin-top: 3px;
  color: #ffbd8a;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 30px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select option {
  color: var(--ink);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 189, 138, 0.86);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}

.form-wide,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: var(--muted);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.footer-brand span,
.site-footer p,
.footer-links {
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--pink);
}

.site-footer p {
  margin: 0;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px 13px 15px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.36);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.wa-float:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.44);
}

.wa-float .va-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.wa-float span {
  font-size: 0.95rem;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .wa-float {
    gap: 0;
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .wa-float span {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: white;
  background: linear-gradient(120deg, var(--orange), var(--pink));
  border: 0;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(246, 16, 92, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 120;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 16px;
  color: white;
  background: var(--ink);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes growBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes rotateDonut {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 1080px) {
  .hero,
  .services-layout,
  .about-grid,
  .why-showcase,
  .contact__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    max-width: 760px;
    min-height: auto;
  }

  .service-detail {
    position: static;
  }

  .contact-form,
  .contact-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .values-grid,
  .why-grid,
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-height: auto;
    padding-bottom: 0;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
  }

  .brand__text {
    min-width: 0;
  }

  .brand__text strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand__text span {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    width: calc(100% + 32px);
    margin: 12px -16px 0;
    padding: 10px 16px 12px;
    overflow-x: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    scrollbar-width: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 6px 0;
    white-space: nowrap;
  }

  .header-actions,
  .header-actions .btn,
  .menu-toggle {
    display: none;
  }

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

  .stat + .stat {
    border-left: 0;
  }

  .stat:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .stat:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__text strong {
    font-size: 0.9rem;
  }

  .hero,
  .section__intro,
  .about-grid,
  .values-grid,
  .wide-visual,
  .services-layout,
  .process-steps,
  .why-showcase,
  .why-grid,
  .contact__inner,
  .site-footer,
  .stats-strip {
    width: min(100% - 28px, var(--max));
  }

  .hero {
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .hero-visual,
  .service-grid,
  .detail-columns,
  .contact-form,
  .values-grid,
  .why-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    aspect-ratio: 1 / 0.82;
  }

  .section-visual {
    min-height: 260px;
  }

  .wide-visual,
  .process-visual,
  .contact-visual {
    height: auto;
    min-height: 220px;
  }

  .visual-card {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
  }

  .dashboard-metric--wide {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 44px 1fr;
    min-height: auto;
    padding: 18px;
  }

  .service-card__icon {
    width: 44px;
    height: 44px;
  }

  .contact-form {
    padding: 18px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 460px) {
  .brand__text strong {
    max-width: 150px;
    white-space: normal;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0 !important;
  }

  .stat + .stat {
    border-top: 1px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
