.growth-map-wrap {
  --gm-red: #ee4a66;
  --gm-dark: #11111e;
  --gm-card: #1a1a2e;
  --gm-white: #ffffff;
  --gm-border: #e8e8ec;
  font-family: "Instrument Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gm-dark);
}
.growth-map-wrap *,
.growth-map-wrap *::before,
.growth-map-wrap *::after {
  box-sizing: border-box;
}

.growth-map-wrap .hero {
  background: var(--gm-dark);
  padding: 72px 60px 64px;
  position: relative;
}
.growth-map-wrap .hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gm-red);
}
.growth-map-wrap .hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 60px;
}
.growth-map-wrap .hero-left {
  flex: 1;
}
.growth-map-wrap .hero h1 {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--gm-white);
  margin-bottom: 10px;
}
.growth-map-wrap .hero h1 span {
  color: var(--gm-white);
  background-image: linear-gradient(var(--gm-red), var(--gm-red));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 0.07em;
}
.growth-map-wrap .hero-sub {
  font-size: 16px;
  color: var(--gm-white);
  max-width: 540px;
  font-weight: 100;
  line-height: 1.5;
  margin-bottom: 28px;
}
.growth-map-wrap .gm-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gm-red);
  flex-shrink: 0;
}
.growth-map-wrap .hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}
.growth-map-wrap .hero-stat-num {
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 38px;
  color: var(--gm-red);
  line-height: 1;
  display: block;
}
.growth-map-wrap .hero-stat-label {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #9a9aab;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.growth-map-wrap .hero-stat {
  text-align: right;
}

.growth-map-wrap .progress-wrap {
  background: var(--gm-white);
  border-bottom: 1px solid var(--gm-border);
  padding: 14px 60px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.growth-map-wrap .progress-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.growth-map-wrap .progress-label {
  font-family: "Lexend", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--gm-dark);
  white-space: nowrap;
}
.growth-map-wrap .progress-bar {
  flex: 1;
  height: 3px;
  background: #e8e8ec;
  border-radius: 2px;
  overflow: hidden;
}
.growth-map-wrap .progress-fill {
  height: 100%;
  background: var(--gm-red);
  border-radius: 2px;
  transition: width 0.4s ease;
  width: 0%;
}
.growth-map-wrap .progress-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--gm-red);
  white-space: nowrap;
}

.growth-map-wrap .section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px 20px;
}
.growth-map-wrap .section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--gm-red);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  color: var(--gm-red);
  margin-bottom: 8px;
}
.growth-map-wrap .section-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gm-red);
  flex-shrink: 0;
}
.growth-map-wrap .section-sub {
  font-size: 12px;
  color: #999;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
}

.growth-map-wrap .question-row {
  display: flex;
  background: var(--gm-white);
  border: 1.5px solid var(--gm-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  animation: gmFadeUp 0.35s ease both;
}
.growth-map-wrap .question-row.answered {
  border-color: var(--gm-red);
  box-shadow: 0 0 0 1px rgba(238, 74, 102, 0.15);
}
.growth-map-wrap .question-row:nth-child(1) {
  animation-delay: 0.04s;
}
.growth-map-wrap .question-row:nth-child(2) {
  animation-delay: 0.08s;
}
.growth-map-wrap .question-row:nth-child(3) {
  animation-delay: 0.12s;
}
.growth-map-wrap .question-row:nth-child(4) {
  animation-delay: 0.16s;
}
.growth-map-wrap .question-left {
  width: 240px;
  flex-shrink: 0;
  padding: 28px 24px;
  border-right: 1.5px solid var(--gm-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fafafc;
}
.growth-map-wrap .q-num {
  font-size: 10px;
  color: #767676;
  margin-bottom: 10px;
}
.growth-map-wrap .q-title {
  font-family: "Lexend", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--gm-dark);
  line-height: 1.3;
  margin-bottom: 10px;
}
.growth-map-wrap .q-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.55;
  font-weight: 300;
}
.growth-map-wrap .q-tick {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.growth-map-wrap .question-row.answered .q-tick {
  background: var(--gm-red);
  border-color: var(--gm-red);
}
.growth-map-wrap .question-row.answered .q-tick::after {
  content: "✓";
  font-size: 12px;
  color: white;
  font-weight: 500;
}
.growth-map-wrap .levels-scroll {
  flex: 1;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.growth-map-wrap .levels-scroll::-webkit-scrollbar {
  display: none;
}
.growth-map-wrap .level-card {
  appearance: none;
  display: block;
  width: 100%;
  flex: 1;
  min-width: 200px;
  margin: 0;
  padding: 24px 22px;
  background: none;
  border: none;
  border-right: 1px solid var(--gm-border);
  border-radius: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
}
.growth-map-wrap .level-card:last-child {
  border-right: none;
}
.growth-map-wrap .level-card:hover {
  background: #f5f5f8;
}
.growth-map-wrap .level-card.selected {
  background: #fff5f7;
}
.growth-map-wrap .level-card.selected::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gm-red);
}
.growth-map-wrap .level-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.growth-map-wrap .level-code {
  font-family: "Lexend", sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #767676;
  text-transform: capitalize;
}
.growth-map-wrap .level-card.selected .level-code {
  color: var(--gm-red);
}
.growth-map-wrap .level-radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.growth-map-wrap .level-card.selected .level-radio {
  border-color: var(--gm-red);
  background: var(--gm-red);
}
.growth-map-wrap .level-radio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  opacity: 0;
}
.growth-map-wrap .level-card.selected .level-radio-dot {
  opacity: 1;
}
.growth-map-wrap .level-desc {
  font-size: 12.5px;
  color: #777;
  line-height: 1.6;
  font-weight: 300;
}
.growth-map-wrap .level-card.selected .level-desc {
  color: var(--gm-dark);
}

.growth-map-wrap .section-divider {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 0 60px;
  height: 1px;
  background: linear-gradient(to right, var(--gm-red), transparent);
}

.growth-map-wrap .submit-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 60px 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.growth-map-wrap .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gm-dark);
  color: white;
  font-family: "Lexend", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 16px 40px;
  border: 1px solid var(--gm-dark);
  cursor: pointer;
  border-radius: 999px;
  transition: opacity 0.2s;
}
.growth-map-wrap .submit-btn:hover {
  opacity: 0.85;
}
.growth-map-wrap .submit-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.growth-map-wrap .submit-note {
  font-size: 13px;
  color: #999;
  font-weight: 300;
}

.growth-map-wrap .results-wrap {
  background: var(--gm-dark);
  padding: 64px 60px 80px;
}
.growth-map-wrap .results-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.growth-map-wrap .results-title {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 50px);
  color: var(--gm-white);
  line-height: 1.15;
  margin-bottom: 32px;
}
.growth-map-wrap .scores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.growth-map-wrap .score-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.growth-map-wrap .score-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gm-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease 0.4s;
}
.growth-map-wrap .score-card.animate::after {
  transform: scaleX(1);
}
.growth-map-wrap .score-tag {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gm-red);
  margin-bottom: 4px;
}
.growth-map-wrap .score-name {
  font-size: 12px;
  color: #8888aa;
  margin-bottom: 16px;
  font-weight: 300;
}
.growth-map-wrap .score-display {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.growth-map-wrap .score-num {
  font-family: "League Gothic", sans-serif;
  font-weight: 500;
  font-size: 52px;
  color: white;
  line-height: 1;
}
.growth-map-wrap .score-denom {
  font-family: "League Gothic", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #8888aa;
}
.growth-map-wrap .score-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Lexend", sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border: 1.5px solid #ffffff;
  border-radius: 100px;
  background: transparent;
  color: #ffffff;
  margin-bottom: 12px;
}
.growth-map-wrap .score-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gm-red);
  flex-shrink: 0;
}
.growth-map-wrap .score-bar-wrap {
  height: 3px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
}
.growth-map-wrap .score-bar {
  height: 100%;
  background: var(--gm-red);
  border-radius: 2px;
  transition: width 0.9s ease 0.6s;
}
.growth-map-wrap .score-rec {
  font-size: 12px;
  color: #9a9ac2;
  line-height: 1.65;
  font-weight: 300;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 14px;
}
.growth-map-wrap .score-rec strong {
  color: white;
  font-weight: 500;
}

/* Get a copy: PDF + email */
.growth-map-wrap .gm-actions-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.growth-map-wrap .gm-actions-eyebrow {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gm-red);
  margin-bottom: 16px;
}
.growth-map-wrap .gm-actions-copy {
  font-size: 13.5px;
  color: #ccccdd;
  font-weight: 300;
  margin: 0 0 16px;
}
.growth-map-wrap .gm-email-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.growth-map-wrap .gm-email-input {
  flex: 1 1 240px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: white;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  padding: 12px 20px;
}
.growth-map-wrap .gm-email-input::placeholder {
  color: #6a6a7d;
}
.growth-map-wrap .gm-email-input:focus {
  outline: none;
  border-color: var(--gm-red);
}
.growth-map-wrap .gm-email-btn {
  background: none;
  border: 1.5px solid rgba(238, 74, 102, 0.5);
  color: var(--gm-red);
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.growth-map-wrap .gm-email-btn:hover {
  background: var(--gm-red);
  color: white;
}
.growth-map-wrap .gm-email-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.growth-map-wrap .gm-consent-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
}
.growth-map-wrap .gm-consent-checkbox {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
}
.growth-map-wrap .gm-consent-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}
.growth-map-wrap .gm-consent-mark::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}
.growth-map-wrap .gm-consent-checkbox:checked + .gm-consent-mark {
  background: var(--gm-red);
  border-color: var(--gm-red);
}
.growth-map-wrap .gm-consent-checkbox:checked + .gm-consent-mark::after {
  opacity: 1;
}
.growth-map-wrap .gm-consent-checkbox:focus-visible + .gm-consent-mark {
  border-color: white;
}
.growth-map-wrap .gm-consent-text {
  font-size: 12px;
  line-height: 1.6;
  color: #9a9aab;
  font-weight: 300;
}
.growth-map-wrap .gm-consent-text a {
  color: var(--gm-red);
  text-decoration: underline;
}
.growth-map-wrap .gm-consent-text a:hover {
  color: white;
}
.growth-map-wrap .gm-email-status {
  font-size: 12px;
  margin-top: 12px;
}
.growth-map-wrap .gm-email-status--ok {
  color: #7ee0a8;
}
.growth-map-wrap .gm-email-status--error {
  color: var(--gm-red);
}

.growth-map-wrap .close-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 16px;
}
.growth-map-wrap .close-empowerment {
  font-size: 16px;
  color: #ccccdd;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 720px;
}
.growth-map-wrap .close-empowerment strong {
  color: white;
  font-weight: 500;
}
.growth-map-wrap .close-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: white;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}
.growth-map-wrap .close-cta:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.06);
}
.growth-map-wrap .reset-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #9a9aab;
  font-family: "Lexend", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 999px;
  margin-top: 20px;
  transition: all 0.2s;
  display: inline-block;
}
.growth-map-wrap .reset-btn:hover {
  border-color: var(--gm-red);
  color: var(--gm-red);
}

.growth-map-wrap [x-cloak] {
  display: none !important;
}

/* Preamble */
.growth-map-wrap .gm-preamble-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.growth-map-wrap .gm-preamble-eyebrow {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gm-red);
  margin-bottom: 10px;
}
.growth-map-wrap .gm-preamble-text {
  font-size: 15px;
  color: #ccccdd;
  line-height: 1.8;
  font-weight: 300;
}

/* Top 3 priorities */
.growth-map-wrap .gm-priorities-eyebrow {
  font-family: "Lexend", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gm-red);
  margin-bottom: 14px;
}
.growth-map-wrap .gm-priority-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 24px 28px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.growth-map-wrap .gm-priority-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gm-red);
  transform-origin: left;
}
.growth-map-wrap .gm-priority-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.growth-map-wrap .gm-priority-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gm-red);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lexend", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: white;
}
.growth-map-wrap .gm-priority-body {
  flex: 1;
}
.growth-map-wrap .gm-priority-order {
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--gm-red);
  margin-bottom: 4px;
}
.growth-map-wrap .gm-priority-label {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 2px;
}
.growth-map-wrap .gm-priority-level {
  font-size: 11px;
  color: #8888aa;
  margin-bottom: 10px;
}
.growth-map-wrap .gm-priority-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 100px;
  padding: 4px 12px;
  font-family: "Lexend", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}
.growth-map-wrap .gm-priority-product::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gm-red);
  flex-shrink: 0;
}
.growth-map-wrap .gm-priority-what {
  font-size: 12.5px;
  color: #888899;
  line-height: 1.65;
}

.gm-results-enter {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.gm-results-enter-start {
  opacity: 0;
  transform: translateY(24px);
}
.gm-results-enter-end {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gmFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .growth-map-wrap .hero,
  .growth-map-wrap .section-wrap,
  .growth-map-wrap .submit-wrap,
  .growth-map-wrap .results-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .growth-map-wrap .progress-wrap {
    padding: 12px 24px;
  }
  .growth-map-wrap .hero-inner {
    flex-direction: column;
    gap: 32px;
  }
  .growth-map-wrap .hero-right {
    flex-direction: row;
    gap: 32px;
  }
  .growth-map-wrap .hero-stat {
    text-align: left;
  }
  .growth-map-wrap .scores-grid {
    grid-template-columns: 1fr;
  }
  .growth-map-wrap .section-divider {
    padding: 0 24px;
  }
}
@media (max-width: 700px) {
  .growth-map-wrap .question-row {
    flex-direction: column;
  }
  .growth-map-wrap .question-left {
    width: 100%;
    border-right: none;
    border-bottom: 1.5px solid var(--gm-border);
  }
  .growth-map-wrap .levels-scroll {
    flex-direction: column;
  }
  .growth-map-wrap .level-card {
    border-right: none;
    border-bottom: 1px solid var(--gm-border);
    min-width: unset;
  }
}
