.pv-qf-shell,
.pv-qf-shell * {
  box-sizing: border-box;
}

.pv-qf-shell {
  --pv-accent: #9ef7ff;
  --pv-soft: #d9b4ff;
  --pv-white: #ffffff;
  --pv-muted: rgba(210, 219, 236, 0.56);
  --pv-line: rgba(255, 255, 255, 0.82);
  --pv-error: #ff3b3b;
  width: 100vw;
  min-height: 100vh;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  color: var(--pv-white);
  background: #000;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  isolation: isolate;
}

.pv-qf-shell noscript,
.pv-form-error {
  display: block;
  padding: 40px;
  color: #fff;
  background: #111;
}

.pv-qf-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 48%, rgba(94, 136, 169, .22), transparent 25%),
    radial-gradient(circle at 57% 57%, rgba(168, 91, 37, .24), transparent 27%),
    radial-gradient(circle at 45% 60%, rgba(39, 90, 159, .25), transparent 31%),
    #000;
}

.pv-qf-bg:before,
.pv-qf-bg:after,
.pv-qf-bg span {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: .55;
  transform: translate3d(0,0,0);
  animation: pvFloat 11s ease-in-out infinite alternate;
}

.pv-qf-bg:before {
  width: 430px;
  height: 190px;
  left: 37%;
  top: 19%;
  background: linear-gradient(115deg, rgba(157, 247, 255, .18), rgba(217, 180, 255, .12), rgba(255, 132, 59, .18));
  transform: rotate(-16deg);
}

.pv-qf-bg:after {
  width: 560px;
  height: 320px;
  left: 31%;
  top: 39%;
  background: conic-gradient(from 80deg, rgba(41,89,151,.22), rgba(255,151,57,.21), rgba(157,247,255,.16), rgba(56,82,149,.22));
  animation-duration: 15s;
  animation-delay: -4s;
}

.pv-qf-bg span:nth-child(1) {
  width: 180px;
  height: 180px;
  left: 68%;
  top: 16%;
  background: rgba(217, 180, 255, .28);
  animation-duration: 7s;
}

.pv-qf-bg span:nth-child(2) {
  width: 130px;
  height: 130px;
  left: 35%;
  top: 18%;
  background: rgba(112, 201, 108, .28);
  animation-duration: 9s;
  animation-delay: -2s;
}

.pv-qf-bg span:nth-child(3) {
  width: 240px;
  height: 240px;
  right: 16%;
  bottom: 13%;
  background: rgba(119, 211, 236, .18);
  animation-duration: 13s;
  animation-delay: -5s;
}

@keyframes pvFloat {
  0% { transform: translate3d(-18px, -8px, 0) rotate(-12deg) scale(1); }
  100% { transform: translate3d(18px, 18px, 0) rotate(10deg) scale(1.08); }
}

.pv-qf-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: rgba(157, 247, 255, .23);
  z-index: 5;
}

.pv-qf-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pv-accent), rgba(217, 180, 255, .95));
  transition: width .45s cubic-bezier(.2, .9, .2, 1);
  box-shadow: 0 0 22px rgba(157, 247, 255, .55);
}

.pv-qf-topbar {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(28px, 4vw, 64px) clamp(24px, 5vw, 70px);
}

.pv-qf-brand {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pv-qf-brand img {
  display: block;
  max-width: 230px;
  max-height: 76px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(157, 247, 255, .12));
}

.pv-qf-wordmark {
  display: inline-block;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.06em;
  color: #fff;
}

.pv-qf-menu {
  width: 70px;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.pv-qf-menu i {
  display: block;
  height: 1px;
  background: var(--pv-accent);
  box-shadow: 0 0 12px rgba(157,247,255,.45);
}

.pv-qf-menu i:nth-child(1) { width: 62px; }
.pv-qf-menu i:nth-child(2) { width: 46px; }
.pv-qf-menu i:nth-child(3) { width: 32px; }

.pv-qf-main {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 30px 0 86px;
}

.pv-qf-stage {
  width: min(100%, 980px);
  margin-left: clamp(0px, 9vw, 140px);
}

.pv-step-in {
  animation: pvStepIn .48s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes pvStepIn {
  0% { opacity: 0; transform: translateY(18px) scale(.992); filter: blur(8px); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.pv-qf-orb {
  position: absolute;
  left: 50%;
  top: 49%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
  transform: translate(-43%, -50%);
  border-radius: 999px;
  z-index: -1;
  opacity: .62;
  filter: blur(.6px);
  pointer-events: none;
}

.pv-qf-orb:before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: 999px;
  background:
    linear-gradient(125deg, transparent 26%, rgba(157,247,255,.14) 27%, transparent 34%),
    linear-gradient(32deg, transparent 22%, rgba(255,143,67,.16) 23%, transparent 33%),
    linear-gradient(-30deg, transparent 35%, rgba(157,247,255,.12) 36%, transparent 50%);
  filter: blur(20px);
  animation: pvOrbPulse 9s ease-in-out infinite alternate;
}

.pv-qf-orb div {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(180px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -.16em;
  color: rgba(255,255,255,.035);
  filter: blur(10px);
}

@keyframes pvOrbPulse {
  0% { transform: rotate(-8deg) scale(.96); opacity: .74; }
  100% { transform: rotate(10deg) scale(1.09); opacity: .96; }
}

.pv-qf-counter {
  position: absolute;
  left: calc(50% - 75px);
  top: clamp(10px, 8vh, 90px);
  color: rgba(112, 201, 108, .78);
  font-size: clamp(72px, 11vw, 160px);
  font-weight: 300;
  line-height: 1;
  transform: rotate(-8deg);
  pointer-events: none;
  font-family: "Comic Sans MS", "Bradley Hand", cursive;
  text-shadow: 0 0 20px rgba(112,201,108,.24);
}

.pv-qf-intro,
.pv-qf-question,
.pv-qf-thankyou {
  width: min(100%, 940px);
}

.pv-qf-intro h1,
.pv-qf-thankyou h1 {
  max-width: 980px;
  margin: 0 0 36px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.04;
  letter-spacing: -.055em;
  font-weight: 850;
  background: linear-gradient(90deg, #fff, var(--pv-soft) 18%, var(--pv-accent) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pv-qf-intro p,
.pv-qf-thankyou p,
.pv-qf-desc {
  max-width: 960px;
  color: var(--pv-muted);
  font-size: clamp(18px, 2.1vw, 30px);
  line-height: 1.45;
  font-weight: 300;
  margin: 0 0 38px;
}

.pv-qf-question h2 {
  margin: 0 0 24px;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1.14;
  letter-spacing: -.045em;
  font-weight: 820;
  color: #fff;
}

.pv-qf-desc {
  font-size: clamp(16px, 1.55vw, 24px);
  margin-bottom: 36px;
}

.pv-qf-fields {
  max-width: 980px;
}

.pv-field {
  position: relative;
  margin: 0 0 30px;
}

.pv-label,
.pv-field > label.pv-label {
  display: block;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 760;
  letter-spacing: -.025em;
}

.pv-required {
  color: var(--pv-accent);
  margin-left: 3px;
}

.pv-help {
  display: block;
  margin: -9px 0 14px;
  color: var(--pv-muted);
  font-size: 15px;
  line-height: 1.5;
}

.pv-field input[type="text"],
.pv-field input[type="email"],
.pv-field input[type="tel"],
.pv-field input[type="url"],
.pv-field input[type="number"],
.pv-field textarea,
.pv-field select {
  width: 100%;
  border: 0;
  border-bottom: 3px solid var(--pv-line);
  border-radius: 0;
  background: transparent;
  color: #dffcff;
  outline: none;
  padding: 20px 0 25px;
  font-size: clamp(21px, 2.35vw, 32px);
  line-height: 1.3;
  box-shadow: none;
  appearance: none;
  transition: border-color .22s ease, color .22s ease;
}

.pv-field textarea {
  min-height: 135px;
  resize: vertical;
}

.pv-field select {
  cursor: pointer;
  color: #fff;
}

.pv-field input::placeholder,
.pv-field textarea::placeholder {
  color: rgba(205, 215, 235, .44);
}

.pv-field input:focus,
.pv-field textarea:focus,
.pv-field select:focus {
  border-bottom-color: var(--pv-accent);
  color: #efffff;
}

.pv-has-error input,
.pv-has-error textarea,
.pv-has-error select {
  border-bottom-color: var(--pv-error) !important;
}

.pv-error,
.pv-qf-step-error {
  color: #ffb3b3;
  margin-top: 14px;
  font-size: 15px;
}

.pv-choice-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.pv-choice {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  align-items: start;
  color: #fff;
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.45;
  cursor: pointer;
  max-width: 1000px;
}

.pv-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pv-choice span {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255,255,255,.9);
  display: block;
  margin-top: 4px;
  border-radius: 2px;
  transition: all .18s ease;
}

.pv-radio-list .pv-choice span {
  border-radius: 999px;
}

.pv-choice input:checked + span {
  background: var(--pv-accent);
  border-color: var(--pv-accent);
  box-shadow: 0 0 0 5px rgba(157,247,255,.13), 0 0 24px rgba(157,247,255,.35);
}

.pv-choice b {
  font-weight: 480;
}

.pv-upload {
  display: inline-grid;
  place-items: center;
  margin-top: 25px;
  cursor: pointer;
}

.pv-upload input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pv-upload span,
.pv-qf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 64px;
  padding: 16px 34px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 22px 55px rgba(0,0,0,.22);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}

.pv-upload span:hover,
.pv-qf-btn:hover {
  transform: translateY(-2px);
  background: #e9fbff;
}

.pv-qf-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.pv-qf-btn-primary {
  background: #fff;
}

.pv-qf-actions {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.pv-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.pv-file-list span {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.06);
  font-size: 13px;
}

.pv-review-table {
  width: min(100%, 920px);
  border-collapse: collapse;
  color: #fff;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  overflow: hidden;
  display: block;
  max-height: 42vh;
  overflow-y: auto;
}

.pv-review-table tbody,
.pv-review-table tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.pv-review-table th,
.pv-review-table td {
  padding: 16px 18px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
  font-size: 15px;
}

.pv-review-table th {
  width: 32%;
  color: rgba(255,255,255,.65);
  font-weight: 600;
}

@media (max-width: 900px) {
  .pv-qf-topbar {
    padding: 24px 22px;
  }
  .pv-qf-brand img { max-width: 170px; max-height: 58px; }
  .pv-qf-menu { width: 46px; gap: 9px; }
  .pv-qf-menu i:nth-child(1) { width: 42px; }
  .pv-qf-menu i:nth-child(2) { width: 32px; }
  .pv-qf-menu i:nth-child(3) { width: 24px; }
  .pv-qf-main {
    width: min(100% - 34px, 760px);
    min-height: calc(100vh - 106px);
    padding: 34px 0 74px;
    align-items: center;
  }
  .pv-qf-stage {
    margin-left: 0;
  }
  .pv-qf-orb {
    width: 78vw;
    top: 43%;
    transform: translate(-50%, -50%);
  }
  .pv-qf-counter {
    left: auto;
    right: 16px;
    top: 84px;
    font-size: 72px;
  }
  .pv-qf-intro h1,
  .pv-qf-thankyou h1 {
    font-size: clamp(38px, 11vw, 56px);
  }
  .pv-qf-intro p,
  .pv-qf-thankyou p,
  .pv-qf-desc {
    font-size: 18px;
  }
  .pv-qf-question h2 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .pv-field input[type="text"],
  .pv-field input[type="email"],
  .pv-field input[type="tel"],
  .pv-field input[type="url"],
  .pv-field input[type="number"],
  .pv-field textarea,
  .pv-field select {
    font-size: 22px;
    border-bottom-width: 2px;
  }
  .pv-qf-actions {
    gap: 16px;
  }
  .pv-upload span,
  .pv-qf-btn {
    min-width: 150px;
    min-height: 58px;
    font-size: 16px;
  }
  .pv-review-table th,
  .pv-review-table td {
    display: block;
    width: 100%;
  }
  .pv-review-table th {
    padding-bottom: 4px;
  }
  .pv-review-table td {
    padding-top: 4px;
  }
}

/* v1.0.1 visual cleanup: no brand/hamburger/step numbers, calmer typography */
body.pv-smart-form-active .entry-title,
body.pv-smart-form-active .page-title,
body.pv-smart-form-active .post-title,
body.pv-smart-form-active header.entry-header,
body.pv-smart-form-active .page-header,
body.pv-smart-form-active .elementor-page-title,
body.pv-smart-form-active .elementor-widget-theme-post-title {
  display: none !important;
}

body.pv-smart-form-active .site-main,
body.pv-smart-form-active main.site-main,
body.pv-smart-form-active .content-area,
body.pv-smart-form-active .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.pv-qf-topbar,
.pv-qf-brand,
.pv-qf-menu,
.pv-qf-counter {
  display: none !important;
}

.pv-qf-shell {
  min-height: calc(100vh - 0px);
}

.pv-qf-main {
  min-height: 100vh !important;
  width: min(1120px, calc(100% - 56px));
  padding: clamp(52px, 7vh, 92px) 0 clamp(48px, 7vh, 86px) !important;
}

.pv-qf-stage {
  width: min(100%, 900px);
  margin-left: clamp(0px, 6vw, 92px) !important;
}

.pv-qf-intro h1,
.pv-qf-thankyou h1 {
  max-width: 900px;
  margin-bottom: 26px !important;
  font-size: clamp(34px, 4.1vw, 54px) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  font-weight: 720 !important;
}

.pv-qf-intro p,
.pv-qf-thankyou p,
.pv-qf-desc {
  max-width: 860px;
  font-size: clamp(15px, 1.38vw, 21px) !important;
  line-height: 1.55 !important;
  font-weight: 300 !important;
  margin-bottom: 28px !important;
}

.pv-qf-question h2 {
  max-width: 900px;
  margin-bottom: 18px !important;
  font-size: clamp(27px, 2.9vw, 42px) !important;
  line-height: 1.16 !important;
  letter-spacing: -0.03em !important;
  font-weight: 700 !important;
}

.pv-label,
.pv-field > label.pv-label {
  margin-bottom: 12px !important;
  font-size: clamp(15px, 1.3vw, 20px) !important;
  line-height: 1.25 !important;
  font-weight: 650 !important;
  letter-spacing: -0.015em !important;
}

.pv-field input[type="text"],
.pv-field input[type="email"],
.pv-field input[type="tel"],
.pv-field input[type="url"],
.pv-field input[type="number"],
.pv-field textarea,
.pv-field select {
  border-bottom-width: 2px !important;
  padding: 13px 0 17px !important;
  font-size: clamp(17px, 1.6vw, 24px) !important;
  line-height: 1.35 !important;
}

.pv-field textarea {
  min-height: 105px !important;
}

.pv-field {
  margin-bottom: 24px !important;
}

.pv-help {
  margin: -4px 0 10px !important;
  font-size: 13px !important;
}

.pv-choice-list {
  gap: 13px !important;
  margin-top: 12px !important;
}

.pv-choice {
  grid-template-columns: 28px 1fr !important;
  gap: 13px !important;
  font-size: clamp(14px, 1.18vw, 18px) !important;
  line-height: 1.45 !important;
}

.pv-choice span {
  width: 22px !important;
  height: 22px !important;
  border-width: 2px !important;
  margin-top: 2px !important;
}

.pv-choice b {
  font-weight: 430 !important;
}

.pv-upload span,
.pv-qf-btn {
  min-width: 150px !important;
  min-height: 54px !important;
  padding: 14px 28px !important;
  font-size: 15px !important;
  font-weight: 520 !important;
}

.pv-qf-actions {
  gap: 22px !important;
  margin-top: 30px !important;
}

.pv-error,
.pv-qf-step-error {
  font-size: 13px !important;
  margin-top: 10px !important;
}

.pv-qf-orb {
  opacity: .48 !important;
  width: min(34vw, 500px) !important;
}

.pv-qf-orb div {
  display: none !important;
}

@media (max-width: 900px) {
  .pv-qf-main {
    width: min(100% - 32px, 760px) !important;
    min-height: 100vh !important;
    padding: 54px 0 56px !important;
  }
  .pv-qf-stage {
    margin-left: 0 !important;
  }
  .pv-qf-intro h1,
  .pv-qf-thankyou h1 {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
  .pv-qf-question h2 {
    font-size: clamp(25px, 7vw, 34px) !important;
  }
  .pv-qf-intro p,
  .pv-qf-thankyou p,
  .pv-qf-desc {
    font-size: 15px !important;
  }
  .pv-field input[type="text"],
  .pv-field input[type="email"],
  .pv-field input[type="tel"],
  .pv-field input[type="url"],
  .pv-field input[type="number"],
  .pv-field textarea,
  .pv-field select {
    font-size: 18px !important;
  }
  .pv-choice {
    font-size: 15px !important;
  }
  .pv-upload span,
  .pv-qf-btn {
    min-width: 132px !important;
    min-height: 50px !important;
    font-size: 14px !important;
  }
}


/* v1.0.2 bugfix: keep button text readable even when theme hover styles try to override it */
.pv-qf-shell .pv-qf-btn,
.pv-qf-shell .pv-qf-btn:link,
.pv-qf-shell .pv-qf-btn:visited,
.pv-qf-shell .pv-qf-btn:hover,
.pv-qf-shell .pv-qf-btn:focus,
.pv-qf-shell .pv-qf-btn:active,
.pv-qf-shell .pv-qf-btn-primary,
.pv-qf-shell .pv-qf-btn-primary:hover,
.pv-qf-shell .pv-qf-btn-primary:focus,
.pv-qf-shell .pv-qf-btn-primary:active,
.pv-qf-shell .pv-upload span,
.pv-qf-shell .pv-upload span:hover {
  color: #000 !important;
  background: #fff !important;
  text-shadow: none !important;
  -webkit-text-fill-color: #000 !important;
}

.pv-qf-shell .pv-qf-btn:hover,
.pv-qf-shell .pv-qf-btn:focus,
.pv-qf-shell .pv-upload span:hover {
  background: #e9fbff !important;
}

.pv-qf-shell .pv-qf-btn:disabled,
.pv-qf-shell .pv-qf-btn[disabled] {
  color: #111 !important;
  -webkit-text-fill-color: #111 !important;
  background: rgba(255,255,255,.72) !important;
  opacity: 1 !important;
}
