/* =========================================================
   HANNEKE VERHOEF
   CONVERSION IQ WALKTHROUGH
========================================================= */

.hv-ciq-demo {
  --ciq-dark: #26354a;
  --ciq-dark-soft: #36475f;
  --ciq-text: #303945;
  --ciq-muted: #717b88;
  --ciq-bg: #f5f1e9;
  --ciq-soft: #faf8f4;
  --ciq-card: #ffffff;
  --ciq-border: #e2ddd5;
  --ciq-bronze: #7f5b39;
  --ciq-accent: #d7a975;
  --ciq-accent-soft: #f4e7d5;
  --ciq-success: #55735f;
  --ciq-success-soft: #eef4ef;
  --ciq-warning: #996c40;
  --ciq-warning-soft: #f8efe3;
  --ciq-danger: #8a4e4e;
  --ciq-danger-soft: #f8eded;

  width: 100vw;
  max-width: 100vw;

  position: relative;
  left: 50%;

  margin-left: -50vw;

  padding: 16px 24px 28px;

  overflow-x: hidden;

  background:
    linear-gradient(
      180deg,
      #f5f1e9 0%,
      #faf8f4 42%,
      #ffffff 100%
    );

  color: var(--ciq-text);

  font-family: inherit;
  line-height: 1.55;
}

.hv-ciq-demo *,
.hv-ciq-demo *::before,
.hv-ciq-demo *::after {
  box-sizing: border-box;
}


/* REMOVE WORDPRESS PAGE SPACING */

body:has(.hv-ciq-demo) .site-content,
body:has(.hv-ciq-demo) .content-area,
body:has(.hv-ciq-demo) .site-main,
body:has(.hv-ciq-demo) .entry-content-wrap,
body:has(.hv-ciq-demo) .entry-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body:has(.hv-ciq-demo) .entry-content-wrap {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}


/* =========================================================
   SHELL
========================================================= */

.hv-ciq-shell {
  width: min(1180px, 100%);

  margin: 0 auto;

  overflow: hidden;

  border: 1px solid var(--ciq-border);
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 24px 60px rgba(35,45,58,0.09);
}


/* =========================================================
   HEADER
========================================================= */

.hv-ciq-header {
  min-height: 64px;

  padding: 10px 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  border-bottom: 1px solid var(--ciq-border);
}

.hv-ciq-brand {
  display: flex;
  align-items: center;

  gap: 11px;
}

.hv-ciq-logo {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 9px;

  background: var(--ciq-dark);

  color: #ffffff;

  font-size: 10px;
  font-weight: 800;
}

.hv-ciq-brand strong,
.hv-ciq-brand span {
  display: block;
}

.hv-ciq-brand strong {
  color: var(--ciq-dark);

  line-height: 1.2;
}

.hv-ciq-brand span {
  margin-top: 1px;

  color: var(--ciq-muted);

  font-size: 11px;
}

.hv-ciq-restart {
  border: 0;

  background: transparent;

  color: var(--ciq-muted);

  font: inherit;
  font-size: 12px;
  font-weight: 600;

  cursor: pointer;
}

.hv-ciq-restart:hover {
  color: var(--ciq-dark);
}


/* =========================================================
   PROGRESS
========================================================= */

.hv-ciq-progress-wrap {
  padding: 11px 24px 0;
}

.hv-ciq-progress-info {
  margin-bottom: 6px;

  display: flex;
  justify-content: space-between;

  color: #89929c;

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hv-ciq-progress-track {
  width: 100%;
  height: 4px;

  overflow: hidden;

  border-radius: 50px;

  background: #ece8e2;
}

.hv-ciq-progress-bar {
  width: 0;
  height: 100%;

  border-radius: inherit;

  background: var(--ciq-accent);

  transition: width 0.5s ease;
}


/* =========================================================
   PANELS
========================================================= */

.hv-ciq-stage {
  position: relative;
}

.hv-ciq-panel {
  display: none;

  min-height: 480px;

  padding: 26px 54px 28px;

  animation: hvCiqPanelIn 0.4s ease;
}

.hv-ciq-panel-active {
  display: block;
}

@keyframes hvCiqPanelIn {

  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.hv-ciq-eyebrow {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--ciq-bronze);

  font-size: 10px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hv-ciq-demo h1,
.hv-ciq-demo h2,
.hv-ciq-demo h3 {
  margin-top: 0;

  color: var(--ciq-dark);

  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hv-ciq-demo h1 {
  max-width: 900px;

  margin-bottom: 16px;

  font-size: clamp(36px,4vw,54px);
}

.hv-ciq-demo h2 {
  max-width: 880px;

  margin-bottom: 12px;

  font-size: clamp(27px,3vw,38px);
}

.hv-ciq-demo h3 {
  margin-bottom: 8px;

  font-size: 19px;
}

.hv-ciq-demo p {
  margin-top: 0;
}

.hv-ciq-step-heading {
  margin-bottom: 26px;
}

.hv-ciq-step-heading > p {
  max-width: 760px;

  margin-bottom: 0;

  color: var(--ciq-muted);

  font-size: 15px;
}

.hv-ciq-mini-label {
  display: block;

  margin-bottom: 5px;

  color: var(--ciq-bronze);

  font-size: 9px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* =========================================================
   BUTTONS
========================================================= */

.hv-ciq-primary,
.hv-ciq-secondary {
  min-height: 42px;

  padding: 10px 17px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  border-radius: 6px;

  font: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  text-decoration: none !important;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.hv-ciq-primary {
  border: 1px solid var(--ciq-dark);

  background: var(--ciq-dark);

  color: #ffffff !important;
}

.hv-ciq-primary:hover {
  transform: translateY(-1px);

  background: var(--ciq-dark-soft);
}

.hv-ciq-secondary {
  border: 1px solid var(--ciq-border);

  background: #ffffff;

  color: var(--ciq-dark) !important;
}

.hv-ciq-secondary:hover {
  background: #f8f6f2;
}


/* =========================================================
   INTRO
========================================================= */

.hv-ciq-intro {
  padding-top: 36px;
}

.hv-ciq-intro-copy {
  max-width: 760px;

  margin-bottom: 25px;

  color: var(--ciq-muted);

  font-size: 17px;
}

.hv-ciq-intro-points {
  max-width: 820px;

  display: grid;
  grid-template-columns: repeat(3,1fr);

  gap: 10px;

  margin: 24px 0;
}

.hv-ciq-intro-points > div {
  padding: 14px;

  border: 1px solid var(--ciq-border);
  border-radius: 8px;

  background: var(--ciq-soft);
}

.hv-ciq-intro-points span {
  display: block;

  margin-bottom: 7px;

  color: var(--ciq-bronze);

  font-size: 9px;
  font-weight: 800;
}

.hv-ciq-intro-points strong,
.hv-ciq-intro-points small {
  display: block;
}

.hv-ciq-intro-points strong {
  margin-bottom: 2px;

  color: var(--ciq-dark);

  font-size: 13px;
}

.hv-ciq-intro-points small {
  color: var(--ciq-muted);

  font-size: 10px;
}


/* =========================================================
   APP WINDOW
========================================================= */

.hv-ciq-app-window {
  min-height: 330px;

  display: grid;
  grid-template-columns: 180px 1fr;

  overflow: hidden;

  border: 1px solid var(--ciq-border);
  border-radius: 12px;

  background: #ffffff;

  box-shadow:
    0 14px 35px rgba(35,45,58,0.055);
}

.hv-ciq-sidebar {
  padding: 18px 13px;

  border-right: 1px solid var(--ciq-border);

  background: #f8f7f4;
}

.hv-ciq-sidebar-brand {
  margin-bottom: 20px;

  padding: 5px 7px;

  color: var(--ciq-dark);

  font-size: 13px;
  font-weight: 700;
}

.hv-ciq-nav {
  margin-bottom: 4px;

  padding: 8px 9px;

  border-radius: 6px;

  color: #68727d;

  font-size: 11px;
}

.hv-ciq-nav-active {
  background: #ece8df;

  color: var(--ciq-dark);

  font-weight: 700;
}

.hv-ciq-app-main {
  padding: 22px;

  background: #f5f2ec;
}

.hv-ciq-app-title {
  margin-bottom: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 15px;
}

.hv-ciq-app-title strong {
  display: block;

  color: var(--ciq-dark);

  font-size: 17px;
}

.hv-ciq-draft {
  padding: 5px 9px;

  border-radius: 50px;

  background: var(--ciq-success-soft);

  color: var(--ciq-success);

  font-size: 9px;
  font-weight: 700;
}

.hv-ciq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 9px;
}

.hv-ciq-field {
  min-height: 65px;

  padding: 11px 13px;

  border: 1px solid var(--ciq-border);
  border-radius: 7px;

  background: #ffffff;
}

.hv-ciq-field-wide {
  grid-column: 1 / -1;
}

.hv-ciq-field span {
  display: block;

  margin-bottom: 4px;

  color: var(--ciq-muted);

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hv-ciq-field strong {
  display: block;

  color: var(--ciq-dark);

  font-size: 11px;
  font-weight: 600;
}

.hv-ciq-problem {
  margin-top: 10px;

  padding: 12px 14px;

  border: 1px solid #eadac5;
  border-radius: 7px;

  background: var(--ciq-warning-soft);
}

.hv-ciq-problem span,
.hv-ciq-problem strong {
  display: block;
}

.hv-ciq-problem span {
  margin-bottom: 4px;

  color: var(--ciq-bronze);

  font-size: 9px;

  text-transform: uppercase;
}

.hv-ciq-problem strong {
  color: var(--ciq-dark);

  font-size: 11px;
}


/* =========================================================
   EVIDENCE
========================================================= */

.hv-ciq-evidence-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;

  gap: 16px;
}

.hv-ciq-browser {
  overflow: hidden;

  border: 1px solid var(--ciq-border);
  border-radius: 10px;

  background: #ffffff;
}

.hv-ciq-browser-bar {
  min-height: 40px;

  padding: 8px 12px;

  display: flex;
  align-items: center;

  gap: 5px;

  border-bottom: 1px solid var(--ciq-border);

  background: #f4f3f0;
}

.hv-ciq-browser-bar > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #d1ccc4;
}

.hv-ciq-browser-bar div {
  margin-left: 10px;

  padding: 4px 10px;

  flex: 1;

  border-radius: 4px;

  background: #ffffff;

  color: #89919a;

  font-size: 9px;
}

.hv-ciq-browser-content {
  min-height: 250px;

  padding: 36px 34px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background:
    linear-gradient(
      145deg,
      #f5f1e9,
      #ffffff
    );
}

.hv-ciq-browser-content h3 {
  max-width: 480px;

  margin-bottom: 12px;

  font-size: 27px;
}

.hv-ciq-browser-content p {
  max-width: 480px;

  margin-bottom: 17px;

  color: var(--ciq-muted);

  font-size: 12px;
}

.hv-ciq-browser-button {
  width: fit-content;

  padding: 8px 12px;

  border-radius: 5px;

  background: var(--ciq-dark);

  color: #ffffff;

  font-size: 10px;
  font-weight: 700;
}

.hv-ciq-evidence-panel {
  padding: 17px;

  border: 1px solid var(--ciq-border);
  border-radius: 10px;

  background: #ffffff;
}

.hv-ciq-evidence-head {
  margin-bottom: 10px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 10px;
}

.hv-ciq-evidence-head strong {
  display: block;

  color: var(--ciq-dark);

  font-size: 13px;
}

.hv-ciq-success {
  padding: 4px 7px;

  border-radius: 50px;

  background: var(--ciq-success-soft);

  color: var(--ciq-success);

  font-size: 8px;
  font-weight: 700;
}

.hv-ciq-evidence-row {
  padding: 10px 0;

  display: flex;
  justify-content: space-between;

  gap: 10px;

  border-bottom: 1px solid var(--ciq-border);

  font-size: 11px;
}

.hv-ciq-evidence-row:last-child {
  border-bottom: 0;
}

.hv-ciq-evidence-row span {
  color: var(--ciq-muted);
}

.hv-ciq-evidence-row strong {
  color: var(--ciq-success);

  font-size: 10px;
}

.hv-ciq-warning-text {
  color: var(--ciq-warning) !important;
}

.hv-ciq-muted-text {
  color: var(--ciq-muted) !important;
}


/* =========================================================
   SCORE
========================================================= */

.hv-ciq-score-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;

  gap: 16px;
}

.hv-ciq-main-score {
  min-height: 285px;

  padding: 22px;

  border-radius: 11px;

  background: var(--ciq-dark);

  color: #ffffff;
}

.hv-ciq-main-score .hv-ciq-mini-label {
  color: #ddb98e;
}

.hv-ciq-score-number {
  margin: 13px 0 5px;

  font-size: 67px;
  font-weight: 700;

  line-height: 1;
}

.hv-ciq-score-number small {
  font-size: 16px;
  font-weight: 500;

  opacity: 0.55;
}

.hv-ciq-main-score > strong {
  display: block;

  margin-bottom: 12px;

  color: #ffffff;
}

.hv-ciq-main-score p {
  color: rgba(255,255,255,0.7);

  font-size: 12px;
}

.hv-ciq-confidence {
  margin-top: 20px;

  padding-top: 12px;

  border-top: 1px solid rgba(255,255,255,0.1);

  color: rgba(255,255,255,0.50);

  font-size: 9px;

  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hv-ciq-category-scores {
  padding: 7px 17px;

  border: 1px solid var(--ciq-border);
  border-radius: 11px;

  background: #ffffff;
}

.hv-ciq-score-row {
  position: relative;

  min-height: 51px;

  padding: 9px 42px 9px 0;

  border-bottom: 1px solid var(--ciq-border);
}

.hv-ciq-score-row:last-child {
  border-bottom: 0;
}

.hv-ciq-score-row strong,
.hv-ciq-score-row span {
  display: block;
}

.hv-ciq-score-row strong {
  color: var(--ciq-dark);

  font-size: 11px;
}

.hv-ciq-score-row div > span {
  color: var(--ciq-muted);

  font-size: 9px;
}

.hv-ciq-score-row b {
  position: absolute;
  right: 0;
  top: 10px;

  color: var(--ciq-dark);

  font-size: 13px;
}

.hv-ciq-score-track {
  height: 3px;

  margin-top: 6px;

  overflow: hidden;

  border-radius: 50px;

  background: #ebe8e2;
}

.hv-ciq-score-track span {
  height: 100%;

  border-radius: inherit;

  background: var(--ciq-accent);
}


/* =========================================================
   LEAKS
========================================================= */

.hv-ciq-leaks {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 14px;
}

.hv-ciq-leak {
  padding: 18px;

  border: 1px solid var(--ciq-border);
  border-radius: 10px;

  background: #ffffff;
}

.hv-ciq-leak-top {
  margin-bottom: 13px;

  display: flex;
  justify-content: space-between;

  gap: 7px;
}

.hv-ciq-severity,
.hv-ciq-confidence-tag {
  padding: 4px 7px;

  border-radius: 50px;

  font-size: 8px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hv-ciq-severity {
  background: var(--ciq-warning-soft);

  color: var(--ciq-warning);
}

.hv-ciq-severity-high {
  background: var(--ciq-danger-soft);

  color: var(--ciq-danger);
}

.hv-ciq-confidence-tag {
  background: #f2f2f0;

  color: var(--ciq-muted);
}

.hv-ciq-leak h3 {
  margin-bottom: 15px;

  font-size: 17px;
}

.hv-ciq-leak-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 13px;
}

.hv-ciq-leak-grid > div {
  padding-top: 10px;

  border-top: 1px solid var(--ciq-border);
}

.hv-ciq-leak-grid span {
  display: block;

  margin-bottom: 4px;

  color: var(--ciq-bronze);

  font-size: 8px;
  font-weight: 800;

  text-transform: uppercase;
}

.hv-ciq-leak-grid p {
  margin-bottom: 0;

  color: var(--ciq-muted);

  font-size: 10px;
}


/* =========================================================
   ACTION PLAN
========================================================= */

.hv-ciq-plan-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;

  gap: 16px;
}

.hv-ciq-plan-list {
  display: grid;

  gap: 8px;
}

.hv-ciq-plan-item {
  min-height: 79px;

  padding: 12px 14px;

  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;

  gap: 11px;

  border: 1px solid var(--ciq-border);
  border-radius: 8px;

  background: #ffffff;
}

.hv-ciq-plan-number {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--ciq-accent-soft);

  color: var(--ciq-bronze);

  font-size: 8px;
  font-weight: 800;
}

.hv-ciq-plan-item strong {
  display: block;

  color: var(--ciq-dark);

  font-size: 12px;
}

.hv-ciq-plan-item p {
  margin: 2px 0 0;

  color: var(--ciq-muted);

  font-size: 9px;
}

.hv-ciq-plan-time {
  color: var(--ciq-muted);

  font-size: 9px;
}

.hv-ciq-rewrite {
  padding: 19px;

  border-radius: 10px;

  background: var(--ciq-dark);

  color: #ffffff;
}

.hv-ciq-rewrite .hv-ciq-mini-label {
  color: #deb98e;
}

.hv-ciq-rewrite h3 {
  color: #ffffff;

  font-size: 22px;
}

.hv-ciq-rewrite > p {
  color: rgba(255,255,255,0.67);

  font-size: 11px;
}

.hv-ciq-rewrite-before,
.hv-ciq-rewrite-after {
  margin-top: 12px;

  padding: 10px;

  border-radius: 6px;

  font-size: 10px;
}

.hv-ciq-rewrite-before {
  background: rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.60);
}

.hv-ciq-rewrite-after {
  background: rgba(215,169,117,0.16);

  color: #f3d4b1;
}

.hv-ciq-rewrite-before span,
.hv-ciq-rewrite-after span {
  display: block;

  margin-bottom: 3px;

  font-size: 7px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.06em;
}


/* =========================================================
   FINAL
========================================================= */

.hv-ciq-final {
  margin-top: 24px;

  padding-top: 22px;

  border-top: 1px solid var(--ciq-border);
}

.hv-ciq-final h2 {
  max-width: 760px;

  font-size: clamp(25px,2.5vw,34px);
}

.hv-ciq-final > p {
  max-width: 700px;

  margin-bottom: 17px;

  color: var(--ciq-muted);

  font-size: 13px;
}

.hv-ciq-final-buttons {
  display: flex;
  flex-wrap: wrap;

  gap: 9px;
}


/* =========================================================
   REVEAL
========================================================= */

.hv-ciq-reveal {
  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hv-ciq-reveal.hv-ciq-revealed {
  opacity: 1;

  transform: translateY(0);
}


/* =========================================================
   NAVIGATION
========================================================= */

.hv-ciq-navigation {
  min-height: 60px;

  padding: 9px 24px;

  display: none;
  justify-content: space-between;
  align-items: center;

  border-top: 1px solid var(--ciq-border);

  background: #faf9f7;
}

.hv-ciq-navigation.hv-ciq-nav-visible {
  display: flex;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .hv-ciq-demo {
    padding: 45px 18px 65px;
  }

  .hv-ciq-panel {
    min-height: auto;

    padding: 50px 30px;
  }

  .hv-ciq-step-heading {
    margin-bottom: 40px;
  }

  .hv-ciq-step-heading > p {
    font-size: 17px;
  }

  .hv-ciq-intro-points {
    grid-template-columns: 1fr;
  }

  .hv-ciq-evidence-layout,
  .hv-ciq-score-layout,
  .hv-ciq-leaks,
  .hv-ciq-plan-layout {
    grid-template-columns: 1fr;
  }

  .hv-ciq-app-window {
    grid-template-columns: 155px 1fr;
  }

  .hv-ciq-main-score {
    min-height: auto;
  }

  .hv-ciq-final {
    margin-top: 40px;

    padding-top: 35px;
  }

  .hv-ciq-navigation {
    min-height: 76px;

    padding: 14px 28px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .hv-ciq-demo {
    padding-left: 0;
    padding-right: 0;
  }

  .hv-ciq-shell {
    border-left: 0;
    border-right: 0;

    border-radius: 0;
  }

  .hv-ciq-header {
    padding: 15px 18px;
  }

  .hv-ciq-brand span {
    display: none;
  }

  .hv-ciq-progress-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hv-ciq-panel {
    padding: 42px 20px;
  }

  .hv-ciq-demo h1 {
    font-size: clamp(36px,10vw,48px);
  }

  .hv-ciq-demo h2 {
    font-size: clamp(29px,8vw,38px);
  }

  .hv-ciq-app-window {
    display: block;
  }

  .hv-ciq-sidebar {
    display: none;
  }

  .hv-ciq-app-main {
    padding: 18px;
  }

  .hv-ciq-form-grid {
    grid-template-columns: 1fr;
  }

  .hv-ciq-field-wide {
    grid-column: auto;
  }

  .hv-ciq-evidence-layout,
  .hv-ciq-score-layout,
  .hv-ciq-leaks,
  .hv-ciq-plan-layout {
    grid-template-columns: 1fr;
  }

  .hv-ciq-browser-content {
    padding: 30px 22px;
  }

  .hv-ciq-browser-content h3 {
    font-size: 24px;
  }

  .hv-ciq-leak-grid {
    grid-template-columns: 1fr;
  }

  .hv-ciq-plan-item {
    grid-template-columns: 32px 1fr;
  }

  .hv-ciq-plan-time {
    grid-column: 2;
  }

  .hv-ciq-navigation {
    padding: 14px 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .hv-ciq-primary,
  .hv-ciq-secondary {
    padding-left: 14px;
    padding-right: 14px;

    font-size: 12px;
  }

  .hv-ciq-leak-top {
    flex-direction: column;
    align-items: flex-start;
  }

}