:root {
  --navy: #12233f;
  --blue: #146eff;
  --blue-dark: #0759db;
  --yellow: #ffd23f;
  --red: #ff4d4d;
  --cream: #fffaf0;
  --white: #ffffff;
  --text: #24324a;
  --muted: #68758a;
  --border: #dde5f0;
  --shadow: 0 24px 70px rgba(18, 35, 63, .14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
button, input, textarea { font: inherit; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  min-height: 72px;
  padding: 12px 16px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(221,229,240,.85);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(18,35,63,.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}
.brand strong { color: var(--blue); }
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 11px;
  transform: rotate(-5deg);
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 600;
  text-decoration: none;
}
.nav a:not(.button):hover { color: var(--blue); }
.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(20,110,255,.25);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; }
.button-light { background: var(--white); color: var(--navy); box-shadow: none; }
.button-light:hover { background: var(--cream); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 28px auto 0;
  padding: 76px 70px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  position: relative;
  color: var(--navy);
  background:
    radial-gradient(circle at 88% 15%, rgba(255,210,63,.55), transparent 25%),
    radial-gradient(circle at 78% 75%, rgba(20,110,255,.15), transparent 30%),
    linear-gradient(135deg, #f5f9ff 0%, #fffaf0 100%);
  border-radius: 38px;
}
.hero:before {
  content: "";
  width: 380px;
  height: 380px;
  position: absolute;
  right: -180px;
  bottom: -180px;
  border: 56px solid rgba(255,77,77,.08);
  border-radius: 50%;
}
.eyebrow, .section-kicker {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin-top: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  line-height: 1.12;
}
h1 { margin-bottom: 24px; font-size: clamp(3rem, 6vw, 5.6rem); letter-spacing: -.055em; }
h1 span { color: var(--blue); }
h2 { margin-bottom: 18px; font-size: clamp(2.2rem, 4vw, 3.6rem); letter-spacing: -.045em; }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
.hero-text { max-width: 670px; margin: 0; color: var(--muted); font-size: 1.14rem; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.text-link { color: var(--navy); font-weight: 700; text-decoration: none; }
.trust-row {
  margin-top: 34px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.trust-row span {
  padding: 8px 12px;
  color: var(--navy);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(18,35,63,.09);
  border-radius: 999px;
  font-size: .83rem;
  font-weight: 700;
}

}


/* Subtle animated claw in the hero */
.claw-stage {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.82), rgba(255,255,255,.45)),
    linear-gradient(180deg, #eaf6ff 0 68%, #b8dcff 68%);
  border: 1px solid rgba(18,35,63,.08);
}

.claw-track {
  height: 14px;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background:
    linear-gradient(#d5deea, #8d9bad 50%, #d5deea 51%);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 7px 0 rgba(18,35,63,.08);
}

.moving-claw {
  width: 108px;
  position: absolute;
  top: 13px;
  left: 0;
  z-index: 3;
  animation: clawTravel 12s ease-in-out infinite;
}

.claw-carriage {
  width: 108px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 5px solid var(--navy);
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 7px 0 rgba(18,35,63,.08);
}

.claw-cable {
  width: 5px;
  height: 94px;
  margin: -1px auto 0;
  background: var(--navy);
  transform-origin: top;
  animation: cableDrop 12s ease-in-out infinite;
}

.claw-head {
  width: 40px;
  height: 28px;
  margin: -2px auto 0;
  position: relative;
  background: var(--yellow);
  border: 5px solid var(--navy);
  border-radius: 50%;
  animation: headDrop 12s ease-in-out infinite;
}

.arm {
  width: 5px;
  height: 44px;
  position: absolute;
  top: 18px;
  background: var(--navy);
  border-radius: 999px;
  transform-origin: top;
}

.arm-left {
  left: 7px;
  animation: armLeft 12s ease-in-out infinite;
}

.arm-right {
  right: 7px;
  animation: armRight 12s ease-in-out infinite;
}

.grabbed-plush {
  width: 58px;
  height: 58px;
  margin: 27px auto 0;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 3rem;
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 8px 5px rgba(18,35,63,.18));
  animation: plushGrab 12s ease-in-out infinite;
}

.grab-sparkle {
  position: absolute;
  color: var(--yellow);
  opacity: 0;
  text-shadow: 0 0 12px rgba(255,210,63,.9);
  animation: grabSparkle 12s ease-in-out infinite;
}

.sparkle-a { top: 185px; left: 2px; font-size: 1.3rem; }
.sparkle-b { top: 210px; right: 0; font-size: 1rem; animation-delay: .18s; }
.sparkle-c { top: 235px; left: 18px; font-size: .8rem; animation-delay: .34s; }

.plush-bed {
  min-height: 150px;
  padding: 24px 22px 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  flex-wrap: wrap;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.25)),
    #77b9ef;
  border-top: 6px solid rgba(18,35,63,.12);
}

.plush-bed span {
  font-size: clamp(2.9rem, 6vw, 4.5rem);
  line-height: .92;
  filter: drop-shadow(0 7px 4px rgba(18,35,63,.16));
}

@keyframes clawTravel {
  0%, 7%   { transform: translateX(18px); }
  34%, 66% { transform: translateX(calc(100% + 180px)); }
  92%, 100% { transform: translateX(18px); }
}

@keyframes cableDrop {
  0%, 36%, 64%, 100% { transform: scaleY(.48); }
  44%, 56% { transform: scaleY(1.95); }
}

@keyframes headDrop {
  0%, 36%, 64%, 100% { transform: translateY(-48px); }
  44%, 56% { transform: translateY(43px); }
}

@keyframes armLeft {
  0%, 44%, 52%, 100% { transform: rotate(34deg); }
  55%, 64% { transform: rotate(13deg); }
}

@keyframes armRight {
  0%, 44%, 52%, 100% { transform: rotate(-34deg); }
  55%, 64% { transform: rotate(-13deg); }
}

@keyframes plushGrab {
  0%, 48% { opacity: 0; transform: translateY(44px); }
  53%, 64% { opacity: 1; transform: translateY(18px); }
  68%, 100% { opacity: 0; transform: translateY(-24px); }
}

@keyframes grabSparkle {
  0%, 50% { opacity: 0; transform: scale(.3) rotate(0); }
  55%, 61% { opacity: 1; transform: scale(1) rotate(18deg); }
  67%, 100% { opacity: 0; transform: scale(.4) rotate(35deg); }
}

@media (prefers-reduced-motion: reduce) {
  .moving-claw,
  .claw-cable,
  .claw-head,
  .arm-left,
  .arm-right,
  .grabbed-plush,
  .grab-sparkle {
    animation: none !important;
  }

  .moving-claw { left: 40%; }
  .claw-cable { transform: scaleY(.65); }
  .claw-head { transform: translateY(-30px); }
}

.section { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 105px 0; }
.intro { max-width: 810px; text-align: center; }
.intro > p:last-child { margin: 0 auto; color: var(--muted); font-size: 1.1rem; }
.section-heading { margin-bottom: 38px; display: grid; grid-template-columns: 1fr .7fr; gap: 60px; align-items:end; }
.section-heading p:last-child { color: var(--muted); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card {
  min-height: 260px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 50px rgba(18,35,63,.06);
}
.card p { color: var(--muted); }
.step-number {
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #edf4ff;
  border-radius: 14px;
  font-weight: 800;
}

.benefits {
  padding: 70px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 75px;
  align-items: center;
  background: var(--navy);
  border-radius: 36px;
}
.benefits h2, .benefits p { color: var(--white); }
.benefits .section-kicker { color: var(--yellow); }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { margin: 13px 0; padding-left: 31px; position: relative; color: #dfe9fb; }
.check-list li:before { content:"✓"; position:absolute; left:0; color:var(--yellow); font-weight:900; }
.venue-panel {
  padding: 34px;
  background: var(--white);
  border-radius: 28px;
}
.venue-panel > p { margin-top: 0; color: var(--navy); font-weight: 800; }
.venue-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.venue-grid span {
  min-height: 76px;
  padding: 14px;
  display: flex;
  align-items: center;
  color: var(--navy);
  background: var(--cream);
  border-radius: 16px;
  font-weight: 700;
}

.callout {
  margin-top: 105px;
  padding: 58px 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--blue);
  border-radius: 32px;
}
.callout h2 { max-width: 760px; margin: 0; color: var(--white); }
.callout .section-kicker { color: var(--yellow); }

.faq-list { border-top: 1px solid var(--border); }
details { border-bottom: 1px solid var(--border); }
summary {
  padding: 24px 4px;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}
details p { max-width: 760px; margin: -6px 0 26px; color: var(--muted); }

.contact {
  margin-bottom: 80px;
  padding: 70px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  background: var(--cream);
  border-radius: 36px;
}
.contact-copy > p:not(.section-kicker) { color: var(--muted); }
.contact-links { margin-top: 30px; display: flex; flex-direction: column; gap: 9px; }
.contact-links a { color: var(--blue); font-weight: 800; text-decoration: none; }
.form-shell { padding: 34px; background: var(--white); border-radius: 25px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { margin-bottom: 16px; display: block; color: var(--navy); font-size: .9rem; font-weight: 700; }
input, textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  background: #fbfdff;
  outline: none;
}
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,110,255,.1); }
textarea { resize: vertical; }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: .78rem; }

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 45px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: .87rem;
}
.mobile-call { display: none; }

@media (max-width: 900px) {
  .hero { padding: 60px 35px; grid-template-columns: 1fr; }
  .claw-stage { min-height: 410px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .benefits, .contact { padding: 50px 35px; grid-template-columns: 1fr; }
  .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .callout { align-items: flex-start; flex-direction: column; }
  footer { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 24px); margin-top: 12px; }
  .menu-button { display: block; }
  .nav {
    display: none;
    padding: 16px;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero, 
/* Subtle animated claw in the hero */
.claw-stage {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.82), rgba(255,255,255,.45)),
    linear-gradient(180deg, #eaf6ff 0 68%, #b8dcff 68%);
  border: 1px solid rgba(18,35,63,.08);
}

.claw-track {
  height: 14px;
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  background:
    linear-gradient(#d5deea, #8d9bad 50%, #d5deea 51%);
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--navy);
  box-shadow: 0 7px 0 rgba(18,35,63,.08);
}

.moving-claw {
  width: 108px;
  position: absolute;
  top: 13px;
  left: 0;
  z-index: 3;
  animation: clawTravel 12s ease-in-out infinite;
}

.claw-carriage {
  width: 108px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border: 5px solid var(--navy);
  border-radius: 14px;
  font-family: "Poppins", sans-serif;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  box-shadow: 0 7px 0 rgba(18,35,63,.08);
}

.claw-cable {
  width: 5px;
  height: 94px;
  margin: -1px auto 0;
  background: var(--navy);
  transform-origin: top;
  animation: cableDrop 12s ease-in-out infinite;
}

.claw-head {
  width: 40px;
  height: 28px;
  margin: -2px auto 0;
  position: relative;
  background: var(--yellow);
  border: 5px solid var(--navy);
  border-radius: 50%;
  animation: headDrop 12s ease-in-out infinite;
}

.arm {
  width: 5px;
  height: 44px;
  position: absolute;
  top: 18px;
  background: var(--navy);
  border-radius: 999px;
  transform-origin: top;
}

.arm-left {
  left: 7px;
  animation: armLeft 12s ease-in-out infinite;
}

.arm-right {
  right: 7px;
  animation: armRight 12s ease-in-out infinite;
}

.grabbed-plush {
  width: 58px;
  height: 58px;
  margin: 27px auto 0;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 3rem;
  line-height: 1;
  opacity: 0;
  filter: drop-shadow(0 8px 5px rgba(18,35,63,.18));
  animation: plushGrab 12s ease-in-out infinite;
}

.grab-sparkle {
  position: absolute;
  color: var(--yellow);
  opacity: 0;
  text-shadow: 0 0 12px rgba(255,210,63,.9);
  animation: grabSparkle 12s ease-in-out infinite;
}

.sparkle-a { top: 185px; left: 2px; font-size: 1.3rem; }
.sparkle-b { top: 210px; right: 0; font-size: 1rem; animation-delay: .18s; }
.sparkle-c { top: 235px; left: 18px; font-size: .8rem; animation-delay: .34s; }

.plush-bed {
  min-height: 150px;
  padding: 24px 22px 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  flex-wrap: wrap;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.25)),
    #77b9ef;
  border-top: 6px solid rgba(18,35,63,.12);
}

.plush-bed span {
  font-size: clamp(2.9rem, 6vw, 4.5rem);
  line-height: .92;
  filter: drop-shadow(0 7px 4px rgba(18,35,63,.16));
}

@keyframes clawTravel {
  0%, 7%   { transform: translateX(18px); }
  34%, 66% { transform: translateX(calc(100% + 180px)); }
  92%, 100% { transform: translateX(18px); }
}

@keyframes cableDrop {
  0%, 36%, 64%, 100% { transform: scaleY(.48); }
  44%, 56% { transform: scaleY(1.95); }
}

@keyframes headDrop {
  0%, 36%, 64%, 100% { transform: translateY(-48px); }
  44%, 56% { transform: translateY(43px); }
}

@keyframes armLeft {
  0%, 44%, 52%, 100% { transform: rotate(34deg); }
  55%, 64% { transform: rotate(13deg); }
}

@keyframes armRight {
  0%, 44%, 52%, 100% { transform: rotate(-34deg); }
  55%, 64% { transform: rotate(-13deg); }
}

@keyframes plushGrab {
  0%, 48% { opacity: 0; transform: translateY(44px); }
  53%, 64% { opacity: 1; transform: translateY(18px); }
  68%, 100% { opacity: 0; transform: translateY(-24px); }
}

@keyframes grabSparkle {
  0%, 50% { opacity: 0; transform: scale(.3) rotate(0); }
  55%, 61% { opacity: 1; transform: scale(1) rotate(18deg); }
  67%, 100% { opacity: 0; transform: scale(.4) rotate(35deg); }
}

@media (prefers-reduced-motion: reduce) {
  .moving-claw,
  .claw-cable,
  .claw-head,
  .arm-left,
  .arm-right,
  .grabbed-plush,
  .grab-sparkle {
    animation: none !important;
  }

  .moving-claw { left: 40%; }
  .claw-cable { transform: scaleY(.65); }
  .claw-head { transform: translateY(-30px); }
}

.section { width: calc(100% - 24px); }
  .hero { min-height: auto; padding: 48px 24px; border-radius: 28px; }
  h1 { font-size: 3.15rem; }
  .claw-stage { min-height: 360px; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits, .contact { padding: 38px 22px; border-radius: 26px; }
  .venue-grid, .field-row { grid-template-columns: 1fr; }
  .callout { margin-top: 80px; padding: 38px 25px; }
  .form-shell { padding: 24px 18px; }
  .mobile-call {
    display: flex;
    height: 52px;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 50;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--blue);
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(20,110,255,.35);
    font-weight: 800;
    text-decoration: none;
  }
  body { padding-bottom: 76px; }
}
