﻿:root {
  --color-primary: #20b455;
  --color-primary-dark: #169044;
  --color-secondary: #2b61db;
  --color-cta: #ffb100;
  --color-bg: #f9fcff;
  --color-surface: #ffffff;
  --color-border: #dbe7f7;
  --color-text: #1f2a44;
  --color-text-soft: #63708a;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --container: 1140px;
}

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

@keyframes cloudDrift {
  0% { transform: translateX(0); }
  50% { transform: translateX(16px); }
  100% { transform: translateX(0); }
}

@keyframes balloonBob {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes birdGlide {
  0% { transform: translateX(0) translateY(0); opacity: 0.7; }
  50% { transform: translateX(10px) translateY(-6px); opacity: 1; }
  100% { transform: translateX(0) translateY(0); opacity: 0.7; }
}

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

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

@keyframes stickWalkAcross {
  0% { transform: translateX(-110px); }
  100% { transform: translateX(calc(100vw + 110px)); }
}

@keyframes limbSwingLeft {
  0%, 100% { transform: rotate(18deg); }
  50% { transform: rotate(-20deg); }
}

@keyframes limbSwingRight {
  0%, 100% { transform: rotate(-18deg); }
  50% { transform: rotate(20deg); }
}

@keyframes humanArmLead {
  0% { transform: rotate(9deg); }
  25% { transform: rotate(-6deg); }
  55% { transform: rotate(-14deg); }
  78% { transform: rotate(3deg); }
  100% { transform: rotate(9deg); }
}

@keyframes humanArmTrail {
  0% { transform: rotate(-6deg); }
  32% { transform: rotate(8deg); }
  62% { transform: rotate(14deg); }
  100% { transform: rotate(-6deg); }
}

@keyframes humanLegFront {
  0% { transform: rotate(-7deg); }
  35% { transform: rotate(15deg); }
  68% { transform: rotate(6deg); }
  100% { transform: rotate(-7deg); }
}

@keyframes humanLegBack {
  0% { transform: rotate(11deg); }
  30% { transform: rotate(-4deg); }
  58% { transform: rotate(-14deg); }
  100% { transform: rotate(11deg); }
}

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

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

@keyframes stickBalloonLooseRise {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  20% { transform: translate(16px, -24vh) scale(1.01); opacity: 1; }
  40% { transform: translate(-10px, -48vh) scale(1.02); opacity: 1; }
  60% { transform: translate(22px, -74vh) scale(1.03); opacity: 1; }
  80% { transform: translate(-6px, -98vh) scale(1.04); opacity: 1; }
  100% { transform: translate(18px, -124vh) scale(1.05); opacity: 1; }
}

@keyframes stickStringDropShrink {
  0% { transform: translateY(0) scale(1); opacity: 0.9; }
  100% { transform: translateY(54px) scale(0.45); opacity: 0; }
}

@keyframes stickPopWave {
  0% { transform: translate(-50%, -50%) scale(0.2); opacity: 0.52; }
  100% { transform: translate(-50%, -50%) scale(4.1); opacity: 0; }
}

@keyframes balloonPop {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  30% { transform: translateY(-2px) scale(1.1); opacity: 1; }
  100% { transform: translateY(2px) scale(0.18); opacity: 0; }
}

@keyframes stringDrop {
  0% { transform: translate(20px, 50px); opacity: 0.55; }
  100% { transform: translate(20px, 120px); opacity: 0; }
}

@keyframes balloonRespawnFromCoverage {
  0% {
    transform: translateY(170px) scale(0.88);
    opacity: 0;
    filter: brightness(1.08);
  }
  35% {
    transform: translateY(108px) scale(0.93);
    opacity: 0.62;
  }
  68% {
    transform: translateY(42px) scale(0.985);
    opacity: 0.92;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: brightness(1);
  }
}

@keyframes balloonWave {
  0% { transform: translate(-50%, -50%) scale(0.25); opacity: 0.45; }
  100% { transform: translate(-50%, -50%) scale(4.4); opacity: 0; }
}

@keyframes fragmentFly {
  0% { transform: translate(0, 0) rotate(0deg) scale(0.9); opacity: 0.95; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.65); opacity: 0; }
}

@keyframes clickWave {
  0% {
    transform: scale(0.12);
    opacity: 0.22;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 5%, #dff4ff 0%, transparent 26%),
    radial-gradient(circle at 85% 0%, #fff2c9 0%, transparent 28%),
    var(--color-bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 8% 18%, rgba(255, 177, 0, 0.42) 0 2px, transparent 2.8px),
    radial-gradient(circle at 22% 70%, rgba(32, 180, 85, 0.34) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 14%, rgba(43, 97, 219, 0.32) 0 2px, transparent 3px),
    radial-gradient(circle at 61% 78%, rgba(255, 105, 180, 0.28) 0 1.8px, transparent 2.7px),
    radial-gradient(circle at 79% 22%, rgba(255, 127, 80, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 66%, rgba(43, 97, 219, 0.3) 0 2px, transparent 3px);
}

h1, h2, h3 {
  margin: 0 0 12px;
  font-family: "Baloo 2", sans-serif;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2rem, 7vw, 4rem);
  color: #3042a6;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: #2e3b93;
}

p { margin: 0 0 12px; }
a { color: inherit; }

.container {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

.text-soft { color: var(--color-text-soft); }
.section { padding: 64px 0; }

.playfield {
  position: relative;
}

.playfield::before,
.playfield::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
  z-index: 1;
  border-radius: 999px;
  border: 1px solid rgba(209, 219, 236, 0.9);
  opacity: 0.82;
  background: repeating-linear-gradient(
    180deg,
    rgba(181, 210, 255, 0.35) 0 12px,
    rgba(194, 245, 206, 0.35) 12px 24px,
    rgba(255, 220, 178, 0.35) 24px 36px,
    rgba(255, 201, 223, 0.35) 36px 48px
  );
}

.playfield::before {
  left: 0;
}

.playfield::after {
  right: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  min-height: 78px;
}

.logo { text-decoration: none; }

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  border: 1px solid var(--color-border);
  box-shadow: 0 7px 18px rgba(43, 97, 219, 0.15);
  font-size: 1.45rem;
  font-family: "Baloo 2", sans-serif;
  color: #213285;
}

.menu-toggle {
  margin-left: auto;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-weight: 700;
}

.menu {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 7px;
}

.menu.open { display: flex; }

.menu a {
  text-decoration: none;
  font-weight: 700;
  color: #334155;
  padding: 6px 0;
}

.nav-cta {
  display: none;
  gap: 8px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.has-click-wave {
  position: relative;
  overflow: hidden;
}

.click-wave {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  pointer-events: none;
  transform: scale(0);
  animation: clickWave 520ms ease-out forwards;
}

.btn-lg {
  min-height: 48px;
  padding-inline: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: #fff;
  box-shadow: 0 8px 16px rgba(22, 144, 68, 0.25);
}

.btn-secondary {
  border-color: #c8d4ef;
  background: #fff;
  color: #2c3f99;
}

.btn-soft {
  border-color: #d2def6;
  background: #f6f9ff;
  color: #3950a9;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 52px 0 36px;
}

.confetti {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 11%, rgba(255, 177, 0, 0.24) 0 3px, transparent 3.8px),
    radial-gradient(circle at 25% 8%, rgba(32, 180, 85, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 16%, rgba(43, 97, 219, 0.2) 0 3px, transparent 4px),
    radial-gradient(circle at 64% 8%, rgba(255, 127, 80, 0.17) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 14%, rgba(255, 105, 180, 0.18) 0 3px, transparent 4px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.95));
  opacity: 0.55;
  pointer-events: none;
}

.cloud-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 18px rgba(43, 97, 219, 0.08);
  animation: cloudDrift 14s ease-in-out infinite;
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.cloud::before {
  width: 30px;
  height: 30px;
  top: -12px;
  left: 12px;
}

.cloud::after {
  width: 36px;
  height: 36px;
  top: -16px;
  right: 14px;
}

.cloud-a {
  width: 110px;
  top: 36px;
  left: 7%;
}

.cloud-b {
  width: 140px;
  top: 54px;
  right: 13%;
  animation-delay: -4s;
}

.cloud-c {
  width: 96px;
  top: 130px;
  left: 38%;
  animation-delay: -7s;
}

.birds {
  position: absolute;
  top: 42px;
  right: 22%;
  display: flex;
  gap: 10px;
  pointer-events: none;
}

.bird {
  width: 14px;
  height: 10px;
  border-top: 2px solid rgba(72, 92, 148, 0.7);
  border-radius: 50% 50% 0 0;
  transform-origin: center;
  animation: birdGlide 6s ease-in-out infinite;
}

.bird:last-child { animation-delay: -2.5s; }

.hero-grid {
  position: relative;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero-animate-in {
  animation: heroIn 0.65s ease-out both;
}

.hero-animate-delay {
  animation-delay: 0.18s;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #2862d6;
  background: #e6efff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  max-width: 56ch;
  color: #374472;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.call-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #1c4d91;
  background: linear-gradient(135deg, #ffe5a2, #ffcf5f);
  box-shadow: 0 8px 16px rgba(236, 162, 0, 0.25);
}

.call-pill strong {
  color: #6d4600;
  font-size: 1.04rem;
}

.microcopy {
  margin-top: 10px;
  color: var(--color-text-soft);
}

.hero-side {
  position: relative;
  min-height: 260px;
}

.balloon-group {
  position: absolute;
  right: 16px;
  top: 10px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.balloon {
  position: relative;
  width: 38px;
  height: 52px;
  border-radius: 50% 50% 48% 52%;
  box-shadow: inset -6px -10px 0 rgba(0, 0, 0, 0.09);
  animation: balloonBob 4.4s ease-in-out infinite;
  cursor: pointer;
  touch-action: manipulation;
  transition: filter 0.15s ease;
}

.balloon:hover { filter: brightness(1.04); }

.balloon::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 46px;
  background: rgba(73, 88, 115, 0.4);
  transform: translate(20px, 50px);
}

.balloon.b1 { background: #ffd250; }
.balloon.b2 {
  background: #4cc9f0;
}
.balloon.b3 {
  background: #ff79a8;
}

.balloon.is-popping {
  animation: balloonPop 0.42s cubic-bezier(0.2, 0.75, 0.16, 1) forwards !important;
}

.balloon.is-popping::after {
  animation: stringDrop 0.48s ease-out forwards;
}

.balloon.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.balloon.respawn-from-coverage {
  animation: balloonRespawnFromCoverage 0.66s ease-out both !important;
  pointer-events: none;
}

.balloon-wave {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.88);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: balloonWave 0.44s ease-out forwards;
  z-index: 6;
}

.balloon-frag {
  position: absolute;
  width: 7px;
  height: 10px;
  border-radius: 2px;
  transform-origin: center;
  pointer-events: none;
  animation: fragmentFly 0.62s cubic-bezier(0.25, 0.7, 0.2, 1) forwards;
  z-index: 6;
}

.coverage-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 16px 36px rgba(44, 74, 140, 0.12);
  z-index: 4;
}

.eyebrow {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  color: #2f60d8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.section-decor .section-head::after,
.section-flow .section-head::after,
.section-gallery .section-head::after {
  content: "";
  display: block;
  width: 136px;
  height: 12px;
  margin: 10px auto 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 177, 0, 0.36) 0 2px, transparent 2.7px) 0 50% / 22px 10px repeat-x,
    radial-gradient(circle, rgba(43, 97, 219, 0.3) 0 1.7px, transparent 2.4px) 11px 50% / 22px 10px repeat-x;
}

.quick-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.quick-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  color: #2f4fa9;
  background: #edf3ff;
  border: 1px solid #d8e6ff;
}

.cards {
  display: grid;
  gap: 16px;
}

.card {
  border-radius: 24px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: 0 12px 30px rgba(25, 57, 124, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(25, 57, 124, 0.16);
}

.card h3 {
  margin-top: 10px;
  margin-bottom: 7px;
  color: #25397f;
}

.card p {
  color: #49577c;
  margin-bottom: 14px;
}

.card-media {
  height: 170px;
  border-radius: 18px;
  border: 1px solid #e7efff;
  transition: transform 0.25s ease;
}

.card:hover .card-media {
  transform: scale(1.02);
}

.card-green .card-media {
  background: radial-gradient(circle at 30% 20%, #fff 0 16%, transparent 17%), linear-gradient(135deg, #9df2bf, #38c172);
}

.card-orange .card-media {
  background: radial-gradient(circle at 70% 24%, #fff 0 16%, transparent 17%), linear-gradient(135deg, #ffd59e, #ff9f43);
}

.card-pink .card-media {
  background: radial-gradient(circle at 40% 22%, #fff 0 16%, transparent 17%), linear-gradient(135deg, #ffc5dc, #ff6fa8);
}

.section-flow {
  position: relative;
  background: linear-gradient(180deg, rgba(242, 248, 255, 0.9), #ffffff);
}

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

.step-card {
  position: relative;
  border: 1px solid #dbe8ff;
  border-radius: 20px;
  background: #fff;
  padding: 16px 14px 14px;
  box-shadow: 0 10px 24px rgba(36, 67, 136, 0.08);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ffb100, #ff8b3d);
  box-shadow: 0 8px 14px rgba(237, 151, 12, 0.35);
  z-index: 2;
}

.step-card h3 {
  margin-top: 8px;
  color: #2a4299;
}

.section-gallery {
  background: linear-gradient(180deg, #f6faff, #ffffff);
}

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

.g {
  border-radius: 16px;
  min-height: 116px;
  border: 1px solid #d9e8ff;
  box-shadow: 0 10px 22px rgba(44, 78, 151, 0.08);
}

.g1, .g4 { background: linear-gradient(135deg, #8be4ff, #76a9ff); }
.g2, .g5 { background: linear-gradient(135deg, #ffcb7d, #ff8fab); }
.g3, .g6 { background: linear-gradient(135deg, #b4f3c2, #4dbf8a); }

.trust-strip {
  padding-top: 24px;
  padding-bottom: 24px;
}

.trust-grid {
  display: grid;
  gap: 10px;
}

.trust-grid p {
  margin: 0;
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: #eff7ff;
  color: #2b4eac;
  font-weight: 800;
  border: 1px solid #d7e7ff;
}

.contact-wrap {
  display: grid;
  gap: 20px;
}

.contact-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.contact-list li {
  margin-bottom: 6px;
}

.contact-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(44, 78, 151, 0.09);
}

.contact-card h3 {
  color: #2848a4;
}

.contact-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.wa-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #24d366, #18aa52);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(19, 114, 56, 0.4);
  z-index: 35;
  animation: floatY 3s ease-in-out infinite;
}

.footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 26px 0 40px;
}

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

.stick-scene {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 74px;
  pointer-events: none;
  z-index: 33;
}

.stick-walker {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 66px;
  height: 70px;
  will-change: left, transform;
  transform-origin: center bottom;
  transform: none;
}

.stick-walker.is-facing-left .stick-man {
  transform: scaleX(-1);
}

.stick-walker.is-facing-left {
  transform: none;
}

.stick-walker.is-front {
  transform: none;
}

.stick-walker::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 2px;
  width: 34px;
  height: 8px;
  border-radius: 50%;
  background: rgba(25, 39, 72, 0.22);
  filter: blur(1px);
}

.stick-man {
  position: absolute;
  left: 8px;
  bottom: 0;
  width: 34px;
  height: 62px;
  animation: stickBodyBob 1.06s ease-in-out infinite;
  animation-play-state: paused;
  transform-origin: center center;
  transition: transform 260ms ease;
}

.stick-walker.is-idle .stick-man {
  animation-play-state: running;
  animation-duration: 1.5s;
}

.stick-man .head {
  position: absolute;
  left: 8px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2f3a58;
  box-shadow: inset -3px -3px 0 rgba(0, 0, 0, 0.16);
  transform: rotate(0deg);
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1), top 520ms ease;
}

.stick-man .head::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 6px;
  left: 3px;
  transform: translate(0, 0);
  background: #f4f7ff;
  transition: transform 1200ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.stick-man .head::before {
  content: "";
  position: absolute;
  width: 2.5px;
  height: 2.5px;
  border-radius: 50%;
  top: 6px;
  left: 9px;
  background: #f4f7ff;
}

.stick-walker.is-facing-left .stick-man .head {
  transform: rotate(0deg);
}

.stick-walker.is-looking-up .stick-man .head {
  top: -1px;
  transform: rotate(-12deg);
}

.stick-walker.is-sad .stick-man .head {
  top: 1px;
  transform: rotate(0deg);
}

.stick-walker.is-looking-up .stick-man .head::before,
.stick-walker.is-looking-up .stick-man .head::after {
  transform: translate(0, -2px);
}

.stick-walker.is-sad .stick-man .head::before,
.stick-walker.is-sad .stick-man .head::after {
  transform: translate(0, 2px);
}

.stick-walker.is-sad .stick-man {
  transform: translateY(1px) rotate(10deg);
}

.stick-walker.is-facing-left.is-sad .stick-man {
  transform: scaleX(-1) translateY(1px) rotate(10deg);
}

.stick-walker.is-sad .stick-man .body {
  transform: rotate(10deg) translateY(2px);
}

.stick-walker.is-sad .stick-man .arm-left {
  transform: rotate(22deg);
}

.stick-walker.is-sad .stick-man .arm-right {
  transform: rotate(30deg);
}

.stick-man .body {
  position: absolute;
  left: 15px;
  top: 16px;
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: #2f3a58;
  animation: npcShoulderShrug 1.4s ease-in-out infinite;
  animation-play-state: paused;
}

.stick-man .arm,
.stick-man .leg {
  position: absolute;
  width: 3px;
  border-radius: 2px;
  background: #2f3a58;
  transform-origin: top center;
}

.stick-man .arm {
  top: 18px;
  height: 15px;
}

.stick-man .leg {
  top: 36px;
  height: 17px;
}

.stick-man .arm-left { left: 13px; animation: humanArmLead 1.06s ease-in-out infinite; }
.stick-man .arm-right { left: 18px; animation: humanArmTrail 1.14s ease-in-out infinite; animation-delay: -0.14s; }
.stick-man .leg-left { left: 14px; animation: humanLegFront 1.08s ease-in-out infinite; }
.stick-man .leg-right { left: 18px; animation: humanLegBack 1.12s ease-in-out infinite; animation-delay: -0.1s; }

.stick-man .arm-left,
.stick-man .arm-right,
.stick-man .leg-left,
.stick-man .leg-right {
  animation-duration: 1.06s;
  animation-play-state: paused;
}

.stick-walker.is-walking .stick-man,
.stick-walker.is-walking .stick-man .arm-left,
.stick-walker.is-walking .stick-man .arm-right,
.stick-walker.is-walking .stick-man .leg-left,
.stick-walker.is-walking .stick-man .leg-right {
  animation-play-state: running;
}

.stick-walker.is-walking .stick-man .body,
.stick-walker.is-idle .stick-man .body {
  animation-play-state: running;
}

.stick-walker.is-facing-left .stick-man .arm-left,
.stick-walker.is-facing-left .stick-man .arm-right,
.stick-walker.is-facing-left .stick-man .leg-left,
.stick-walker.is-facing-left .stick-man .leg-right {
  animation-direction: reverse;
}

.stick-walker:not(.is-facing-left) .stick-man .arm-left,
.stick-walker:not(.is-facing-left) .stick-man .arm-right,
.stick-walker:not(.is-facing-left) .stick-man .leg-left,
.stick-walker:not(.is-facing-left) .stick-man .leg-right {
  animation-direction: normal;
}

.stick-walker.is-idle .stick-man .arm-left,
.stick-walker.is-idle .stick-man .arm-right,
.stick-walker.is-idle .stick-man .leg-left,
.stick-walker.is-idle .stick-man .leg-right {
  animation-play-state: paused;
}

.stick-walker.is-holding .stick-man .arm-right {
  animation: none;
  top: 17px;
  height: 19px;
  transform: rotate(-56deg);
}

.stick-walker.is-holding-string .stick-man .arm-right {
  animation: none;
  top: 18px;
  height: 18px;
  transform: rotate(-18deg);
}

.stick-balloon {
  position: absolute;
  left: 26px;
  bottom: 20px;
  width: 24px;
  height: 52px;
  pointer-events: auto;
  cursor: pointer;
}

.stick-balloon.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stick-balloon .balloon-shell {
  position: absolute;
  top: 0;
  left: 4px;
  width: 18px;
  height: 24px;
  border-radius: 50% 50% 46% 54%;
  background: linear-gradient(145deg, #ffcb5a, #ff7aa7);
  box-shadow: inset -4px -5px 0 rgba(0, 0, 0, 0.09);
}

.stick-balloon .balloon-string {
  position: absolute;
  top: 22px;
  left: 9px;
  width: 1px;
  height: 32px;
  background: rgba(62, 78, 116, 0.62);
}

.stick-balloon.is-held {
  animation: stickBalloonHeldBob 1.7s ease-in-out infinite;
}

.stick-balloon.is-floating {
  position: absolute;
  z-index: 3;
}

.stick-balloon.is-released {
  animation: stickBalloonLooseRise 5.2s ease-in-out forwards;
}

.stick-balloon.is-popping .balloon-shell {
  animation: balloonPop 0.34s ease-out forwards;
}

.stick-balloon.is-popping .balloon-string {
  animation: stickStringDropShrink 0.42s ease-out forwards;
}

.stick-walker.is-holding-string::before {
  content: "";
  position: absolute;
  left: 27px;
  bottom: 15px;
  width: 1px;
  height: 20px;
  background: rgba(62, 78, 116, 0.58);
  transform: rotate(9deg);
}

.stick-pop-wave {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: stickPopWave 0.44s ease-out forwards;
  z-index: 4;
}

.stick-frag {
  position: absolute;
  width: 6px;
  height: 9px;
  border-radius: 2px;
  pointer-events: none;
  transform-origin: center;
  animation: fragmentFly 0.58s cubic-bezier(0.25, 0.72, 0.2, 1) forwards;
  z-index: 4;
}

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

  .menu {
    display: flex;
    width: auto;
    flex-direction: row;
    margin-left: 20px;
    gap: 16px;
  }

  .nav-cta { display: flex; }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
  }

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

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

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

  .g {
    min-height: 164px;
  }

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

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

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

  .playfield .container {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 1023px) {
  .playfield::before,
  .playfield::after,
  .birds {
    display: none;
  }
}

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

  .btn,
  .card,
  .card-media,
  .reveal {
    transition: none;
  }

  .wa-float,
  .cloud,
  .bird,
  .balloon,
  .hero-animate-in,
  .stick-walker,
  .stick-man,
  .stick-man .arm,
  .stick-man .leg,
  .stick-balloon {
    animation: none;
  }
}
