/* ============================================================
   PUPS — Call A Pup  |  Premium logistics landing page
   ============================================================ */
:root {
  --navy-900: #070617;
  --navy-800: #0a0820;
  --navy-700: #120a2e;
  --purple: #7c3aed;
  --purple-2: #a855f7;
  --orange: #ff5a2c;
  --orange-2: #ff7a3c;
  --pink: #ff3d77;
  --blue: #2f7bff;
  --text: #eef0ff;
  --muted: #a7a3c4;
  --glass: rgba(255, 255, 255, .055);
  --glass-brd: rgba(255, 255, 255, .12);
  --grad-warm: linear-gradient(100deg, #ff5a2c, #ff3d77 55%, #a855f7);
  --grad-btn: linear-gradient(100deg, #ff5a2c, #ff3d77);
  --shadow-soft: 0 24px 60px -20px rgba(0, 0, 0, .6);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --radius: 20px;
  --container: 1180px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--navy-800);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  line-height: 1.6;
}

/* contain decorative / translated elements so they never create page-level x-scroll */
.hero,
.section,
.testi-section,
.footer {
  overflow-x: clip;
}

.phones {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
.brand-text {
  font-family: "Sora", sans-serif;
  letter-spacing: -.02em;
  line-height: 1.05;
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%
}

.container {
  max-width: var(--container)
}

.grad-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ====================== Background FX ====================== */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 78% -5%, rgba(255, 90, 44, .30), transparent 60%),
    radial-gradient(900px 700px at 12% 8%, rgba(124, 58, 237, .32), transparent 60%),
    radial-gradient(1200px 900px at 50% 110%, rgba(255, 61, 119, .18), transparent 60%),
    linear-gradient(160deg, #0a0820, #0a0726 45%, #12082e);
}

.gradient-mesh {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(closest-side at 30% 40%, rgba(124, 58, 237, .28), transparent),
    radial-gradient(closest-side at 70% 60%, rgba(255, 90, 44, .22), transparent);
  filter: blur(40px);
  animation: meshMove 22s ease-in-out infinite alternate;
}

@keyframes meshMove {
  0% {
    transform: translate(-4%, -3%) scale(1)
  }

  100% {
    transform: translate(5%, 4%) scale(1.12)
  }
}

.light-ray {
  position: absolute;
  width: 55vw;
  height: 140vh;
  top: -20vh;
  filter: blur(70px);
  opacity: .5;
  mix-blend-mode: screen;
  transform-origin: top center;
}

.ray-1 {
  left: -8vw;
  background: linear-gradient(transparent, rgba(124, 58, 237, .55), transparent);
  transform: rotate(14deg);
  animation: raySwing 12s ease-in-out infinite alternate;
}

.ray-2 {
  right: -6vw;
  background: linear-gradient(transparent, rgba(255, 90, 44, .5), transparent);
  transform: rotate(-12deg);
  animation: raySwing 15s ease-in-out infinite alternate-reverse;
}

.ray-3 {
  left: 42vw;
  background: linear-gradient(transparent, rgba(255, 61, 119, .35), transparent);
  transform: rotate(4deg);
  animation: raySwing 18s ease-in-out infinite alternate;
}

@keyframes raySwing {
  from {
    transform: rotate(8deg) translateX(-3%)
  }

  to {
    transform: rotate(-6deg) translateX(3%)
  }
}

#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .25
}

.route-pattern path {
  fill: none;
  stroke: rgba(255, 255, 255, .25);
  stroke-width: 2;
  stroke-dasharray: 10 14;
  stroke-dashoffset: 0;
  animation: dashFlow 30s linear infinite;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -600
  }
}

/* ====================== Glass utility ====================== */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-brd);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ====================== Navbar ====================== */
.pups-nav {
  padding: .9rem 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s, border-color .35s, backdrop-filter .35s, -webkit-backdrop-filter .35s;
}

.pups-nav.scrolled {
  background: linear-gradient(100deg, rgb(92 72 66 / 95%), rgb(183 51 90 / 95%) 55%, rgb(111 79 143 / 92%));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: .55rem 0;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .4);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.brand-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: .02em;
}

.brand-mark img {
  width: 120px;
  height: auto;
  display: block;
  border: none !important;
  outline: none !important;
}

.brand-mark,
.navbar-brand {
  border: none !important;
  outline: none !important;
  background: transparent !important;
}

.brand-mark.sm img {
  filter: drop-shadow(0 2px 6px rgba(255, 90, 44, .5));
  border: none !important;
  outline: none !important;
}

.pups-nav .nav-link {
  color: rgba(238, 240, 255, .78);
  font-weight: 500;
  padding: .4rem .9rem;
  border-radius: 10px;
  position: relative;
  transition: color .25s, background .25s;
}

.pups-nav .nav-link:hover,
.pups-nav .nav-link.active {
  color: #fff;
}

.pups-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .15rem;
  width: 0;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}

.pups-nav .nav-link:hover::after,
.pups-nav .nav-link.active::after {
  width: 55%;
}

.navbar-toggler {
  border: none;
  color: #fff;
  font-size: 1.6rem;
  padding: .2rem .5rem;
  box-shadow: none !important;
}

/* Buttons */
.btn {
  font-weight: 600;
  border-radius: 12px;
  padding: .6rem 1.3rem;
  transition: transform .25s var(--ease), box-shadow .3s, background .3s;
}

.btn-glow {
  background: var(--grad-btn);
  color: #fff;
  border: none;
  box-shadow: 0 10px 26px -8px rgba(255, 77, 77, .6);
}

.btn-glow:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -8px rgba(255, 77, 77, .8);
}

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.btn-outline-glow {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
}

.btn-outline-glow:hover {
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 44, .15);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .85rem 1.7rem;
  font-size: 1.02rem;
}

/* Ripple */
.ripple-btn {
  position: relative;
  overflow: hidden;
}

.ripple-btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple .6s var(--ease);
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(14);
    opacity: 0
  }
}

/* Offcanvas */
.pups-offcanvas {
  background: rgba(12, 9, 34, .96);
  backdrop-filter: blur(20px);
  color: #fff;
  width: 80%;
  max-width: 340px;
  border-left: 1px solid rgba(255, 255, 255, .08);
}

.pups-offcanvas .nav-link {
  color: rgba(238, 240, 255, .85);
  font-size: 1.15rem;
  padding: .65rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.pups-offcanvas .nav-link:hover {
  color: #fff;
  padding-left: .8rem;
}

/* ====================== Hero ====================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--glass-brd);
  padding: .4rem .8rem;
  border-radius: 30px;
}

.eyebrow .accent {
  color: var(--orange);
}

.hero-title {
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 800;
  margin: 1.1rem 0 .4rem;
  color: #fff;
}

.hero-sub {
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: .6rem;
}

.hero-desc {
  color: var(--muted);
  max-width: 480px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.4rem;
}

.trust-badges {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  color: #fff;
  font-weight: 600;
}

.trust-badges i {
  color: #3ddc84;
  margin-right: .25rem;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
}

/* Hero Video */
.hero-video-container {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  box-shadow: none !important;
  filter: none !important;
  border: none !important;
  /* This mask guarantees all sides and corners are completely transparent */
  -webkit-mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
  mask-image: radial-gradient(closest-side, black 60%, transparent 100%);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .3);
  border-radius: 14px;
}

.hero-scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    top: 8px
  }

  40% {
    opacity: 1
  }

  80% {
    opacity: 0;
    top: 24px
  }

  100% {
    opacity: 0
  }
}

/* ====================== Sections ====================== */
.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
}

.kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--orange);
  margin-bottom: .8rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ====================== Tracking dashboard ====================== */
.track-dashboard {
  padding: 30px;
}

.track-map {
  background: rgba(0, 0, 0, .25);
  border-radius: 16px;
  padding: 14px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, .06);
}

.track-map-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

#trackRouteBg {
  stroke: rgba(255, 255, 255, .12);
  stroke-width: 4;
}

#trackRoute {
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255, 90, 44, .7));
}

.t-node circle {
  fill: #1b1340;
  stroke: var(--purple-2);
  stroke-width: 3;
}

.t-node text {
  fill: var(--muted);
  font-size: 13px;
  font-family: "Outfit";
  text-anchor: middle;
}

.t-marker text {
  dominant-baseline: middle;
}

.marker-pulse {
  fill: rgba(255, 90, 44, .35);
  animation: markerPulse 1.6s ease-out infinite;
}

@keyframes markerPulse {
  0% {
    r: 10;
    opacity: .8
  }

  100% {
    r: 24;
    opacity: 0
  }
}

.track-panel {
  padding: 6px 6px 6px 12px;
}

.track-id {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.track-id span {
  color: var(--muted);
  font-size: .85rem;
}

.track-id strong {
  color: #fff;
  font-family: "Sora";
}

.pups-progress {
  height: 10px;
  background: rgba(255, 255, 255, .1);
  border-radius: 30px;
  overflow: hidden;
}

.pups-progress .progress-bar {
  background: var(--grad-btn);
  transition: width 1.4s var(--ease);
}

.eta {
  margin: .6rem 0 1.2rem;
  color: var(--muted);
  font-size: .9rem;
}

.eta strong {
  color: #fff;
}

.track-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.track-steps li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .2rem;
  color: var(--muted);
  border-left: 2px solid rgba(255, 255, 255, .12);
  padding-left: 1rem;
  position: relative;
}

.track-steps li i {
  width: 20px;
}

.track-steps li span {
  margin-left: auto;
  font-size: .82rem;
}

.track-steps li.done {
  color: #cfe9d8;
  border-color: #3ddc84;
}

.track-steps li.active {
  color: #fff;
  border-color: var(--orange);
}

.track-steps li.active i {
  color: var(--orange);
  animation: pulseGlow 1.4s infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(255, 90, 44, .6))
  }

  50% {
    filter: drop-shadow(0 0 8px rgba(255, 90, 44, .9))
  }
}

.parcel-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--glass-brd);
  border-radius: 14px;
  padding: .9rem 1rem;
}

.pc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-warm);
  font-size: 1.3rem;
  color: #fff;
}

.parcel-card strong {
  display: block;
  color: #fff;
}

.parcel-card span {
  color: var(--muted);
  font-size: .85rem;
}

/* ====================== Steps ====================== */
.step-card {
  padding: 30px 24px;
  height: 100%;
  text-align: center;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}

.step-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 90, 44, .5);
  box-shadow: 0 30px 60px -24px rgba(255, 90, 44, .4);
}

.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: "Sora";
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .12);
}

.step-emoji {
  font-size: 2.6rem;
  margin-bottom: .8rem;
  display: inline-block;
  transition: transform .4s var(--ease);
}

.step-card:hover .step-emoji {
  transform: scale(1.25) rotate(-6deg);
}

.step-card h3 {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: .5rem;
}

.step-card p {
  color: var(--muted);
  font-size: .94rem;
  margin: 0;
}

/* ====================== Features ====================== */
.feature-card {
  padding: 30px 26px;
  height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, .45);
  box-shadow: 0 30px 60px -24px rgba(124, 58, 237, .45);
}

.feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(255, 90, 44, .9), rgba(168, 85, 247, .9));
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 24px -8px rgba(255, 90, 44, .5);
}

.feature-card h3 {
  font-size: 1.18rem;
  color: #fff;
  margin-bottom: .5rem;
}

.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

/* ====================== Stats ====================== */
.stats-section {
  padding: 70px 0;
}

.stat-num {
  font-family: "Sora";
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--muted);
  font-weight: 500;
  margin-top: .2rem;
}

/* ====================== App showcase ====================== */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: .4rem 0;
  color: #d9d7ee;
}

.check-list i {
  color: #3ddc84;
  margin-right: .6rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--glass-brd);
  color: #fff;
  padding: .6rem 1.1rem;
}

.store-btn:hover {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  transform: translateY(-2px);
}

.store-btn i {
  font-size: 1.6rem;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
  font-weight: 700;
}

.store-btn small {
  font-weight: 400;
  font-size: .65rem;
  opacity: .7;
}

.phones {
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: absolute;
  width: 286px;
  height: 570px;
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(160deg, #2a2350, #0d0926);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, .85), 0 0 60px -10px rgba(124, 58, 237, .45);
}

/* notch */
.phone::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 9px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .55);
  z-index: 4;
}

.phone-back {
  transform: rotate(8deg) translate(150px, -54px) scale(.9);
  opacity: .9;
  z-index: 1;
  animation: bob 4.6s ease-in-out infinite .3s;
}

.phone-front {
  transform: rotate(-5deg) translate(-78px, 42px);
  z-index: 2;
  animation: bob 4s ease-in-out infinite;
}

/* float via margin so the positioning transform above is preserved */
@keyframes bob {

  0%,
  100% {
    margin-top: 0
  }

  50% {
    margin-top: -14px
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(165deg, #171036, #0a0720);
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* status bar */
.ps-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .7rem;
  color: #cfcdec;
  font-weight: 600;
  padding: 6px 6px 10px;
}

.ps-sig {
  display: flex;
  gap: 5px;
  font-size: .72rem;
}

/* top bar (tracking) */
.ps-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-family: "Sora";
  font-weight: 700;
  font-size: .95rem;
  padding: 0 4px 10px;
}

.ps-topbar i {
  font-size: .95rem;
  color: var(--muted);
  font-weight: 400;
}

/* greeting (book) */
.ps-greet {
  padding: 0 4px 12px;
}

.ps-greet small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  margin-bottom: 2px;
}

.ps-greet strong {
  color: #fff;
  font-family: "Sora";
  font-size: 1.25rem;
}

/* map */
.ps-map {
  flex: 1;
  min-height: 140px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 25% 25%, rgba(124, 58, 237, .45), transparent 55%), radial-gradient(circle at 80% 80%, rgba(255, 90, 44, .35), transparent 55%), #100a2a;
  border: 1px solid rgba(255, 255, 255, .08);
}

.ps-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.ps-map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ps-map-route {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 7 7;
  filter: drop-shadow(0 0 4px rgba(255, 90, 44, .8));
  animation: dashFlow 1.4s linear infinite;
}

.ps-map-pin {
  fill: #fff;
  stroke: var(--purple-2);
  stroke-width: 3;
}

.ps-map-pin.end {
  stroke: var(--orange);
}

.ps-dot {
  position: absolute;
  left: 46%;
  top: 42%;
  font-size: 1.5rem;
  z-index: 2;
  animation: floaty 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .5));
}

.ps-eta-pill {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: var(--grad-btn);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .3rem .6rem;
  border-radius: 30px;
  box-shadow: 0 6px 14px -4px rgba(255, 77, 77, .7);
}

/* driver card */
.ps-driver {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 12px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--glass-brd);
  border-radius: 16px;
  padding: .6rem .7rem;
}

.ps-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--grad-warm);
  flex: 0 0 auto;
}

.ps-driver-info {
  flex: 1;
  line-height: 1.2;
}

.ps-driver-info strong {
  display: block;
  color: #fff;
  font-size: .82rem;
}

.ps-driver-info span {
  color: var(--muted);
  font-size: .72rem;
}

.ps-call {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3ddc84;
  color: #06351d;
  font-size: .85rem;
}

/* book fields */
.ps-field {
  display: flex;
  align-items: center;
  gap: .7rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--glass-brd);
  border-radius: 14px;
  padding: .6rem .8rem;
  margin-bottom: .6rem;
}

.ps-field i {
  color: var(--orange);
  font-size: 1rem;
}

.ps-field div {
  line-height: 1.2;
}

.ps-field small {
  display: block;
  color: var(--muted);
  font-size: .66rem;
}

.ps-field div {
  color: #fff;
  font-size: .84rem;
  font-weight: 600;
}

.ps-label {
  color: var(--muted);
  font-size: .74rem;
  margin: .2rem 4px .5rem;
}

.ps-chips {
  display: flex;
  gap: .4rem;
  margin-bottom: .7rem;
}

.ps-chips .chip {
  flex: 1;
  text-align: center;
  font-size: .72rem;
  color: #cfcdec;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  padding: .45rem .2rem;
}

.ps-chips .chip.active {
  background: rgba(255, 90, 44, .18);
  border-color: var(--orange);
  color: #fff;
  font-weight: 600;
}

.ps-quote {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
  padding: 0 4px;
}

.ps-quote span {
  color: var(--muted);
  font-size: .76rem;
}

.ps-quote strong {
  color: #fff;
  font-family: "Sora";
  font-size: 1.1rem;
}

.ps-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  background: var(--grad-btn);
  border-radius: 14px;
  padding: .75rem;
  box-shadow: 0 10px 22px -8px rgba(255, 77, 77, .6);
}

/* bottom nav */
.ps-nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ps-nav i {
  color: var(--muted);
  font-size: 1.05rem;
}

.ps-nav i.active {
  color: var(--orange);
}

.float-y {
  animation: floaty 4s ease-in-out infinite;
}

.float-y2 {
  animation: floaty 4.6s ease-in-out infinite .4s;
}

/* ====================== Testimonials ====================== */
.testi-section {
  overflow: hidden;
}

.testi-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testi-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: testiScroll 38s linear infinite;
}

.testi-track-wrap:hover .testi-track {
  animation-play-state: paused;
}

@keyframes testiScroll {
  to {
    transform: translateX(-50%)
  }
}

.testi-card {
  width: 330px;
  flex: 0 0 auto;
  padding: 24px;
}

.testi-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .9rem;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  background: var(--grad-warm);
}

.testi-name {
  font-weight: 700;
  color: #fff;
}

.testi-role {
  color: var(--muted);
  font-size: .82rem;
}

.testi-stars {
  color: #ffc83d;
  margin-bottom: .5rem;
}

.testi-card p {
  color: #d9d7ee;
  margin: 0;
  font-size: .95rem;
}

/* ====================== CTA ====================== */
.cta-section {
  padding: 60px 0 110px;
}

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 32px;
  padding: 70px 24px;
  background: linear-gradient(115deg, #9f4c35, #af4f6c 60%, #5d0268);
  box-shadow: 0 40px 90px -30px rgba(255, 61, 119, .6);
}

.cta-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .35), transparent 40%), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, .25), transparent 40%);
  animation: ctaGlow 8s ease-in-out infinite alternate;
  mix-blend-mode: overlay;
}

@keyframes ctaGlow {
  from {
    transform: translate(-4%, -4%)
  }

  to {
    transform: translate(6%, 6%)
  }
}

.cta-card h2 {
  position: relative;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: .6rem;
}

.cta-card h2 span {
  opacity: .92;
}

.cta-card p {
  position: relative;
  color: rgba(255, 255, 255, .92);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
}

.cta-card .btn-light {
  color: var(--pink);
  font-weight: 700;
}

.cta-card .btn {
  position: relative;
}

/* ====================== Footer ====================== */
.footer {
  padding: 130px 0 30px;
  background: rgba(7, 6, 23, .7);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-puppy {
  position: absolute;
  top: -20px;
  right: -8%;
  width: 160px;
  z-index: 10;
  pointer-events: none;
  animation: puppyBreathe 4s ease-in-out infinite;
  mix-blend-mode: lighten;
}

.footer-puppy img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, black 55%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, black 55%, transparent 80%);
}

.zzz-container {
  position: absolute;
  top: -25px;
  /* Moved above the puppy so it's properly visible */
  right: 40%;
  transform: translateX(50%);
  display: flex;
  gap: 2px;
  color: #fff;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  pointer-events: none;
  z-index: 11;
}

.zzz-container span {
  display: inline-block;
  opacity: 0;
  animation: floatZzz 3s infinite ease-out;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  /* Stronger shadow for clear visibility */
}

.zzz-container .z1 {
  font-size: 1.4rem;
  animation-delay: 0s;
}

.zzz-container .z2 {
  font-size: 1.1rem;
  animation-delay: 1s;
}

.zzz-container .z3 {
  font-size: 0.8rem;
  animation-delay: 2s;
}

@keyframes floatZzz {
  0% {
    transform: translate(0, 0) scale(0.5);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    transform: translate(20px, -30px) scale(1.5) rotate(15deg);
    opacity: 0;
  }
}

@keyframes puppyBreathe {

  0%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) scale(1.02) rotate(-1deg);
  }
}

.footer-tag {
  color: var(--muted);
  max-width: 320px;
}

.footer h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.1rem;
  font-family: "Sora";
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: .6rem;
}

.footer ul a {
  color: var(--muted);
  transition: color .25s, padding .25s;
}

.footer ul a:hover {
  color: #fff;
  padding-left: .3rem;
}

.contact-list li {
  color: var(--muted);
  margin-bottom: .6rem;
  display: flex;
  align-items: flex-start;
}

.contact-list i {
  color: var(--orange);
  margin-right: .5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.social {
  display: flex;
  gap: .7rem;
  margin-top: 1rem;
}

.social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--glass-brd);
  color: #fff;
  font-size: 1.1rem;
  transition: .3s;
}

.social a:hover {
  background: var(--grad-btn);
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: var(--muted);
  font-size: .88rem;
}

.footer-links a:hover {
  color: #fff;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-btn);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 30px -10px rgba(255, 77, 77, .7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: .4s var(--ease);
  z-index: 60;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-top:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* ====================== Contact modal ====================== */
.pups-modal .modal-content {
  background: linear-gradient(165deg, rgba(26, 19, 64, .96), rgba(12, 9, 34, .98));
  border: 1px solid var(--glass-brd);
  border-radius: 24px;
  color: var(--text);
  overflow: hidden;
  box-shadow: 0 50px 120px -30px rgba(0, 0, 0, .8);
}

.pups-modal .modal-header {
  border: 0;
  padding: 26px 28px 6px;
  align-items: flex-start;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--orange);
}

.pups-modal .modal-title {
  font-family: "Sora";
  font-weight: 800;
  font-size: 1.7rem;
  color: #fff;
  margin: .4rem 0 .25rem;
}

.modal-sub {
  color: var(--muted);
  font-size: .92rem;
  margin: 0;
}

.pups-modal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: .6;
  transition: .25s;
}

.pups-modal .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.pups-modal .modal-body {
  padding: 18px 28px 28px;
}

.contact-form .form-label {
  font-size: .82rem;
  font-weight: 600;
  color: #d7d5ee;
  margin-bottom: .35rem;
}

.contact-form .form-label span {
  color: var(--orange);
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-size: 1rem;
  pointer-events: none;
}

.input-wrap.top i {
  top: 14px;
}

.contact-form .form-control,
.contact-form .form-select {
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--glass-brd);
  color: #fff;
  border-radius: 12px;
  padding: .7rem .9rem .7rem 2.4rem;
  font-size: .92rem;
  transition: border-color .25s, box-shadow .25s, background .25s;
  color-scheme: dark;
}

/* dark native dropdown popup (Chromium honours color-scheme; keep custom arrow) */
.contact-form .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff7a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 14px;
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 84px;
}

.contact-form .form-control::placeholder {
  color: #8a86a8;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  background: rgba(255, 255, 255, .08);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 44, .18);
  outline: none;
}

.contact-form .form-select option {
  background: #160f33;
  color: #fff;
}

.contact-form input[type=date] {
  color-scheme: dark;
}

/* custom dark dropdown (replaces native select for consistent theming) */
.pups-select {
  position: relative;
}

.ps-trigger {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--glass-brd);
  color: #fff;
  border-radius: 12px;
  padding: .7rem .9rem;
  font-size: .92rem;
  cursor: pointer;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.ps-trigger:hover {
  background: rgba(255, 255, 255, .08);
}

.pups-select.open .ps-trigger {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 44, .18);
}

.ps-trigger>i:first-child {
  color: var(--orange);
  font-size: 1rem;
}

.ps-value {
  flex: 1;
  color: #fff;
}

.ps-value:empty::before {
  content: attr(data-placeholder);
  color: #8a86a8;
}

.ps-caret {
  color: var(--muted);
  font-size: .85rem;
  transition: transform .25s;
}

.pups-select.open .ps-caret {
  transform: rotate(180deg);
}

.ps-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  background: #160f33;
  border: 1px solid var(--glass-brd);
  border-radius: 12px;
  box-shadow: 0 22px 50px -16px rgba(0, 0, 0, .75);
  padding: 6px;
  max-height: 230px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.pups-select.open .ps-menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ps-opt {
  padding: .55rem .7rem;
  border-radius: 8px;
  color: #d7d5ee;
  cursor: pointer;
  font-size: .9rem;
  transition: background .15s, color .15s;
}

.ps-opt:hover,
.ps-opt.active {
  background: rgba(255, 90, 44, .18);
  color: #fff;
}

.contact-form .invalid .ps-trigger {
  border-color: #ff5a6e;
  box-shadow: 0 0 0 3px rgba(255, 90, 110, .15);
}

.ps-menu::-webkit-scrollbar {
  width: 8px;
}

.ps-menu::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .18);
  border-radius: 8px;
}

/* custom date picker */
.pups-date {
  position: relative;
}

.pups-date.open .ps-trigger {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 44, .18);
}

.pups-date.open .ps-caret {
  transform: rotate(180deg);
}

.contact-form .invalid .pd-trigger {
  border-color: #ff5a6e;
  box-shadow: 0 0 0 3px rgba(255, 90, 110, .15);
}

.pd-cal {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 286px;
  max-width: 92vw;
  background: #160f33;
  border: 1px solid var(--glass-brd);
  border-radius: 16px;
  box-shadow: 0 -18px 50px -16px rgba(0, 0, 0, .78);
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}

.pups-date.open .pd-cal {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pd-title {
  font-family: "Sora";
  font-weight: 700;
  color: #fff;
  font-size: .95rem;
}

.pd-prev,
.pd-next {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  border: 1px solid var(--glass-brd);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
}

.pd-prev:hover,
.pd-next:hover {
  background: var(--grad-btn);
  border-color: transparent;
}

.pd-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 6px;
}

.pd-weekdays span {
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
}

.pd-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.pd-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  color: #d7d5ee;
  border-radius: 10px;
  font-size: .82rem;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-day.muted {
  visibility: hidden;
}

.pd-day:hover:not(.disabled):not(.selected) {
  background: rgba(255, 90, 44, .18);
  color: #fff;
}

.pd-day.today {
  box-shadow: inset 0 0 0 1.5px var(--orange);
  color: #fff;
}

.pd-day.selected {
  background: var(--grad-btn);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 14px -4px rgba(255, 77, 77, .6);
}

.pd-day.disabled {
  color: #403c63;
  cursor: not-allowed;
}

.pd-foot {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.pd-clear {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s;
}

.pd-clear:hover {
  color: #fff;
}

.invalid-msg {
  display: none;
  color: #ff7a8a;
  font-size: .74rem;
  margin-top: .3rem;
}

.contact-form .invalid input,
.contact-form .invalid select {
  border-color: #ff5a6e;
  box-shadow: 0 0 0 3px rgba(255, 90, 110, .15);
}

.contact-form .invalid .invalid-msg {
  display: block;
}

.form-note {
  color: var(--muted);
  font-size: .8rem;
}

.form-note i {
  color: #3ddc84;
  margin-right: .25rem;
}

.form-success {
  text-align: center;
  padding: 30px 10px;
}

.form-success .fs-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.4rem;
  color: #fff;
  background: linear-gradient(135deg, #3ddc84, #1faf63);
  box-shadow: 0 0 30px rgba(61, 220, 132, .6);
  animation: popIn .5s var(--ease);
}

@keyframes popIn {
  0% {
    transform: scale(0)
  }

  70% {
    transform: scale(1.12)
  }

  100% {
    transform: scale(1)
  }
}

.form-success h4 {
  color: #fff;
  font-family: "Sora";
  font-weight: 700;
  margin-bottom: .4rem;
}

.form-success p {
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto 1.4rem;
}

/* ====================== Responsive ====================== */
@media (max-width:991px) {
  .hero {
    padding-top: 110px;
    text-align: center;
  }

  .hero-desc {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-badges {
    justify-content: center;
  }

  .eyebrow {
    margin-inline: auto;
  }

  .hero-video-container {
    height: 350px;
    margin-top: 30px;
  }

  .footer-puppy {
    width: 100px;
    top: -55px;
  }

  .phones {
    height: 580px;
    margin-top: 24px;
  }

  .phone {
    width: 280px;
    height: 560px;
  }

  .phone-back {
    transform: rotate(8deg) translate(140px, -48px) scale(.9);
    opacity: .9;
  }

  .phone-front {
    transform: rotate(-5deg) translate(-72px, 40px);
  }
}

@media (max-width:767px) {
  .section {
    padding: 35px 0;
  }

  .hero-video-container {
    height: 280px;
  }

  .footer-puppy {
    width: 90px;
    top: 25px;
    right: 35px;
  }

  .footer {
    padding: 35px 0 30px;
  }

  .zzz-container {
    top: -20px;
  }

  .zzz-container .z1 {
    font-size: 1.1rem;
  }

  .zzz-container .z2 {
    font-size: 0.9rem;
  }

  .zzz-container .z3 {
    font-size: 0.7rem;
  }

  .track-dashboard {
    padding: 18px;
  }

  .phones {
    height: 500px;
  }

  .phone {
    width: 235px;
    height: 470px;
    border-radius: 34px;
  }

  .phone-back {
    transform: rotate(7deg) translate(55px, -20px) scale(.94);
  }

  .phone-front {
    transform: rotate(-5deg) translate(-45px, 28px);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:420px) {
  .phone-back {
    transform: rotate(6deg) translate(34px, -14px) scale(.92);
    opacity: .85;
  }

  .phone-front {
    transform: rotate(-4deg) translate(-26px, 18px);
  }
}

@media (max-width:380px) {
  .hero-video-container {
    height: 220px;
  }

  .footer-puppy {
    width: 75px;
    top: -45px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}