/* Homepage-only conversion and contact controls. */

html {
  background: #ffffff;
}

.hero-content > p:last-child {
  margin-bottom: 0;
}

.get-started-dock {
  position: sticky;
  top: 0;
  z-index: 120;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #9ade68 0%,
    #55c85b 16.666%,
    #20bc8f 33.333%,
    #00a7cf 50%,
    #347fdb 66.666%,
    #6548ba 83.333%,
    #d41c80 100%
  );
  box-shadow: 0 8px 22px rgba(8, 9, 11, 0.22);
}

.get-started-dock::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.74) 28%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.get-started-dock.is-stuck::before {
  opacity: 1;
  transform: translateY(0);
}

.get-started-bar {
  min-height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px 16px;
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.42);
  transition: background-color 180ms ease, color 180ms ease;
}

.get-started-bar:hover,
.get-started-bar:focus-visible {
  color: #ffffff;
  background: rgba(17, 24, 32, 0.18);
}

.quick-contact-float {
  position: fixed;
  left: 50%;
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 18px));
  z-index: 140;
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(4, 52px);
  align-items: center;
  justify-content: space-evenly;
  padding: 0 max(14px, env(safe-area-inset-left), env(safe-area-inset-right));
  pointer-events: none;
  transform: translateX(-50%);
}

.quick-contact-float a {
  --float-accent: #ffc72c;
  width: 52px;
  height: 52px;
  position: relative;
  display: inline-flex;
  pointer-events: auto;
  opacity: 0.5;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: #ffffff;
  background: var(--float-accent);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.quick-contact-float a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid rgba(255, 255, 255, 0.58);
  border-radius: inherit;
  pointer-events: none;
}

.quick-contact-float a:hover,
.quick-contact-float a:focus-visible {
  opacity: 1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  filter: brightness(1.08);
  transform: translateY(-4px);
}

.quick-contact-float .quick-contact-phone {
  --float-accent: #10b7c6;
  color: #071a1d;
}

.quick-contact-float .quick-contact-email {
  --float-accent: #db3f78;
  color: #ffffff;
}

.quick-contact-float .quick-contact-instagram {
  --float-accent: #ffc72c;
  color: #111820;
}

.quick-contact-float .quick-contact-linkedin {
  --float-accent: #111820;
  color: #ffffff;
}

.quick-contact-float svg {
  width: 23px;
  height: 23px;
  position: relative;
  z-index: 1;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact-float .linkedin-mark {
  fill: currentColor;
  stroke: none;
}

.quick-contact-float .instagram-dot {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 640px) {
  .get-started-bar {
    min-height: 58px;
    padding: 10px 20px 14px;
    font-size: 1rem;
  }

  .quick-contact-float {
    left: 50%;
    bottom: max(10px, calc(env(safe-area-inset-bottom) + 8px));
    width: 100%;
    grid-template-columns: repeat(4, 48px);
    justify-content: space-evenly;
    padding: 0 12px;
  }

  .quick-contact-float a {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .get-started-dock::before,
  .get-started-bar,
  .quick-contact-float a {
    transition: none;
  }
}

@media print {
  .get-started-dock,
  .quick-contact-float {
    display: none !important;
  }
}
