@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #401f86;
  --brand2: #401f86;
  --text: #111827;
  --muted: #e5e7eb;
  --gt-dark: #1f2937;
  --gt-blue: #3b82f6;
  --gt-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}
.shape {
  position: fixed;
  border: 2px solid var(--brand);
  animation: shapeFloat 20s infinite linear;
  z-index: -1;
}
.shape-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-duration: 15s;
  transform: rotate(45deg);
}
.shape-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  right: 10%;
  border-radius: 50%;
  animation-duration: 20s;
  animation-direction: reverse;
}
.shape-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 5%;
  transform: rotate(30deg);
  animation-duration: 25s;
}
@keyframes shapeFloat {
  0% {
    transform: rotate(0) translateY(0);
  }
  33% {
    transform: rotate(120deg) translateY(-20px);
  }
  66% {
    transform: rotate(240deg) translateY(20px);
  }
  100% {
    transform: rotate(360deg) translateY(0);
  }
}

.neon-line {
  position: fixed;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(64, 31, 134),
    transparent
  );
  z-index: -1;
}
.neon-line-1 {
  width: 300px;
  top: 30%;
  left: -300px;
  animation: neonSlide 6s linear infinite;
}
.neon-line-2 {
  width: 200px;
  bottom: 40%;
  right: -200px;
  animation: neonSlideReverse 8s linear infinite;
}
@keyframes neonSlide {
  to {
    transform: translateX(calc(100vw + 600px));
  }
}
@keyframes neonSlideReverse {
  to {
    transform: translateX(calc(-100vw - 400px));
  }
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  display: none;
  pointer-events: none;
}
.transition-overlay.active {
  display: block;
  pointer-events: all;
}
.liquid-transition {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@keyframes liquidExpand {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  60% {
    transform: scale(30);
    opacity: 0.8;
  }
  100% {
    transform: scale(50);
    opacity: 0;
  }
}
.transition-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.transition-loader.show {
  animation: loaderFade 1.5s ease-in-out;
}
@keyframes loaderFade {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(171, 255, 0, 0.2);
  border-top-color: var(--brand2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  max-width: 600px;
  width: 100%;
  position: relative;
  z-index: 10;
  perspective: 2000px;
}

.form-card {
  background: rgba(255, 255, 255,1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  z-index: 10;
  transform-style: preserve-3d;
  animation: cardEntrance 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: visible;
}
@keyframes cardEntrance {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateY(90deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0);
  }
}

.step {
  display: none;
  animation: stepFadeIn 0.5s ease-out;
  position: relative;
  z-index: 1;
}
.step.active {
  display: block;
  z-index: 2;
}
@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step::-webkit-scrollbar {
  width: 8px;
}
.step::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
.step::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 4px;
}
.step::-webkit-scrollbar-thumb:hover {
  background: #333333;
}
.step.no-scroll {
  overflow-y: hidden;
  padding-right: 0;
}
.step.no-scroll::-webkit-scrollbar {
  display: none;
}

.progress-container {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 30px;
  align-items: center;
}
.progress-step {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.progress-step.active {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 0 30px var(--brand),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
  animation: stepPulse 1.5s ease-in-out infinite;
}
@keyframes stepPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 30px var(--brand),
      inset 0 0 10px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 50px var(--brand),
      inset 0 0 20px rgba(255, 255, 255, 0.7);
  }
}
.progress-step.completed {
  background: var(--brand);
  border-color: var(--brand);
}
.progress-step::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.progress-step:last-child::after {
  display: none;
}
.progress-step.active::after {
  background: linear-gradient(90deg, var(--brand), transparent);
}

/* ================= FUNNEL LOGO ================= */
.funnel-logo {
  display: block;
  text-align: center;
  margin-bottom: 24px;
  animation: fadeIn 0.5s ease-out;
}

.funnel-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* ================= PREVIEW MODE NAVIGATION ================= */
.preview-navigation {
  background: linear-gradient(135deg, #9810FA 0%, #6E11B0 100%);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(152, 16, 250, 0.2);
  animation: fadeIn 0.5s ease-out;
}

.preview-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.preview-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.preview-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9810FA;
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  min-width: 70px;
}

.preview-btn:hover {
  background: #F5F4F9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.preview-btn:active {
  transform: translateY(0);
}

.preview-btn.active {
  background: #9810FA;
  color: #FFFFFF;
  border-color: #FFFFFF;
  font-weight: 600;
}

.preview-btn.clear-storage-btn {
  background: #FF4444;
  color: #FFFFFF;
  border-color: transparent;
  margin-left: 8px;
  font-weight: 600;
}

.preview-btn.clear-storage-btn:hover {
  background: #CC0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 68, 68, 0.3);
}

.preview-btn.clear-storage-btn:active {
  transform: translateY(0);
  background: #AA0000;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .preview-navigation {
    padding: 12px;
    margin-bottom: 20px;
  }
  
  .preview-title {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .preview-buttons {
    gap: 6px;
  }
  
  .preview-btn {
    font-size: 12px;
    padding: 6px 12px;
    min-width: 60px;
  }
}

.top-progress {
  display: block;
  margin-bottom: 22px;
}

.progress-helper-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #401f86;
  line-height: 15px;
  flex-shrink: 0;
  order: 2; /* Desktop: en el medio */
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
  flex-wrap: wrap;
}

.progress-header > span:first-child {
  order: 1; /* Step X of Y */
}

.progress-header > span:last-child {
  order: 3; /* Porcentaje */
}
.progress-bar {
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1CC286, #8BFFBB, #0CA826);
  background-size: 200% 100%;
  animation: progressGradient 2s ease infinite;
  width: 0;
  transition: width 0.3s ease;
}

@keyframes progressGradient {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

.brand-tagline {
  text-align: center;
  font-size: 11px;
  color: #4a5568;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
}

.step.active .brand-tagline {
  animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.step:not(.active) .brand-tagline {
  opacity: 0;
  animation: none;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
h1 {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
.text-white {
  color: #000;
  display: block;
  opacity: 0;
}

.step.active .text-white {
  animation: wordSlide 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s
    forwards;
}

.step:not(.active) .text-white {
  opacity: 0;
  animation: none;
}
.text-green {
  color: var(--brand);
  display: block;
  font-size: 42px;
  opacity: 0;
}

.step.active .text-green {
  animation: wordSlide 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s
    forwards;
}

.step:not(.active) .text-green {
  opacity: 0;
  animation: none;
}
@keyframes wordSlide {
  from {
    opacity: 0;
    transform: translateX(-30px) rotateY(-30deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0);
  }
}
h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  text-align: center;
  line-height: 42px;
  text-transform: capitalize;
}
.main-description {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-top: 16px;
  text-align: center;
  margin-bottom: 24px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  font-weight: 400;
}

label .main-description {
  font-weight: 400;
}

.step.active .main-description {
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.step:not(.active) .main-description {
  opacity: 0;
  animation: none;
}

#sendKitButton {
  margin-top: 36px;
}

/* Checkbox styles for Step 7 */
.opt-in-section {
  margin-top: 36px;
}

.opt-in-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  justify-content: center;
}

.opt-in-checkbox-wrapper .main-description {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  font-size: 14px;
  text-align: left;
}

.opt-in-checkbox-wrapper input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #401f86;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background: white;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.opt-in-checkbox-wrapper input[type="checkbox"]:hover {
  border-color: #9810FA;
}

.opt-in-checkbox-wrapper input[type="checkbox"]:checked {
  background: #401f86;
  border-color: #401f86;
}

.opt-in-checkbox-wrapper input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-top: 16px;
  text-align: center;
  margin-bottom: 24px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.mobile-br {
  display: none;
}

.step.active .description {
  animation: fadeInUp 0.8s ease-out 1.2s forwards;
}

.step:not(.active) .description {
  opacity: 0;
  animation: none;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
.description strong {
  color: var(--brand);
  font-weight: 700;
}

.challenge-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}
.challenge-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.challenge-card:hover {
  background: rgba(64, 31, 134, 0.1);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(64, 31, 134, 0.2);
}
.challenge-card.selected {
  background: rgba(64, 31, 134, 0.2);
  border-color: var(--brand);
  color: var(--brand);
}

/* Step 3 - Revenue Selection */
.step3-header {
  text-align: center;
  margin-bottom: 24px;
}

.step3-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  margin-bottom: 16px;
  text-transform: capitalize;
}

.step3-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.revenue-section {
  margin-bottom: 16px;
}

.revenue-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.revenue-label .label-text {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #000000;
}

.revenue-label .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  cursor: help;
  position: relative;
}

.revenue-label .info-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.revenue-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.revenue-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.revenue-card:hover {
  background: rgba(64, 31, 134, 0.1);
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(64, 31, 134, 0.2);
}

.revenue-card.selected {
  background: rgba(64, 31, 134, 0.2);
  border-color: var(--brand);
  color: var(--brand);
}

.error-message {
  color: #dc2626;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 20px;
}

/* Step 4 - Shopify Metrics */
#step4 h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

#step4 .form-group {
  margin-bottom: 24px;
}

#step4 .form-group label {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

#step4 .form-group label .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  cursor: help;
  position: relative;
}

#step4 .form-group label .info-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

#step4 input {
  height: 49px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #000000;
  width: 100%;
}

#step4 input::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
}

#step4 input:focus {
  outline: none;
  border-color: #401f86;
  box-shadow: 0 0 0 3px rgba(64, 31, 134, 0.1);
}

.step4-footer {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: center;
}

.step4-footer strong {
  color: #401f86;
  font-weight: 700;
}

/* Step 5 - Website URL */
#step5 h2 {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

.step5-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}

#step5 .form-group {
  margin-bottom: 24px;
}

#step5 .form-group label {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #000000;
  display: block;
  margin-bottom: 12px;
}

.page-type-helper {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  text-align: right;
}

#step5 input[type="url"] {
  height: 49px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #000000;
  width: 100%;
}

#step5 input[type="url"]::placeholder {
  color: rgba(0, 0, 0, 0.4);
  font-size: 15px;
}

#step5 select {
  height: 49px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  width: 100%;
}

#step5 select option {
  color: #000000;
}

#step5 select:focus {
  color: #000000;
}

#step5 .cta-button {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.step5-footer {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 17px;
  color: #000000;
  text-align: center;
}

.step5-footer strong {
  color: #401f86;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
label {
  display: block;
  color: #1a202c;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
  text-align: left;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="tel"],
select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #1a202c;
  font-size: 15px;
  transition: all 0.3s ease;
  font-weight: 500;
}

select {
  background-image: linear-gradient(45deg, transparent 50%, var(--brand) 50%), 
                    linear-gradient(135deg, var(--brand) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(1em + 2px), 
                     calc(100% - 15px) calc(1em + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

select:hover {
  border-color: var(--brand);
  background-color: rgba(64, 31, 134, 0.02);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(64, 31, 134, 0.15);
}
input:focus,
select:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(64, 31, 134, 0.1);
}
input::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}

.input-error {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.06) !important;
}
.error-text {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
}
.error-banner {
  font-size: 13px;
  color: #ef4444;
  margin-top: 8px;
  text-align: center;
}

.tooltip {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  text-align: center;
  line-height: 16px;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -10px;
  left: 24px;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 12px;
  padding: 8px;
  border-radius: 6px;
  width: 200px;
  z-index: 10;
  transition: opacity 0.2s ease;
}
.tooltip-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border: 5px solid transparent;
  border-right-color: rgba(0, 0, 0, 0.9);
}

.cta-button {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand) 100%);
  color: #000;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  background-color: #000;
  color: #fff;
  margin-top: 24px;
}

/* Only animate buttons when their parent step is active */
.step.active .cta-button {
  animation: buttonSlideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275)
    0.6s forwards;
}

/* Reset animation when step becomes inactive */
.step:not(.active) .cta-button {
  opacity: 0;
  animation: none;
}
@keyframes buttonSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.5s ease;
  border-radius: 12px;
  overflow: hidden;
}
.cta-button:hover::before {
  left: 100%;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 35px rgba(64, 31, 134, 0.5),
    0 -3px 20px rgba(64, 31, 134, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.cta-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.04);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 22px;
  transition: all 0.2s ease;
}
.back-button:hover {
  background: rgba(64, 31, 134, 0.15);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.report-slider {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  padding: 30px;
  margin: 30px 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 9px solid rgba(0, 0, 0, 0);
}
.slide-content {
  text-align: center;
  color: #000;
  animation: slideIn 0.5s ease-out;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 12px;
}
.slide-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
}

.footer-text {
  text-align: center;
  margin: 24px 0;
  color: #000000;
  font-size: 14px;
  line-height: 16px;
  font-weight: 400;
}
.footer-text strong {
  color: #401f86;
  font-weight: 800;
}

.urgency-box {
  margin-top: 20px;
  text-align: center;
  opacity: 0;
}

.step.active .urgency-box {
  animation: urgencyPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.6s
    forwards;
}

.step:not(.active) .urgency-box {
  opacity: 0;
  animation: none;
}
@keyframes urgencyPop {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.urgency-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #000;
  border-radius: 100px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
}
.live-indicator {
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px var(--brand);
  }
  50% {
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--brand);
  }
}

.warning-box {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 13px;
  text-align: center;
}

.analysis-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.analysis-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #000000;
  line-height: 1.2;
}
.analyzing-url {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.5;
}
.gt-browser-window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  max-width: 665px;
  width: 100%;
  margin: 0 auto 16px;
  border: 1px solid #e5e7eb;
}
.browser-header {
  background: #f3f4f6;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
}
.browser-controls {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}
.browser-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.browser-dot.red {
  background: #ef4444;
}
.browser-dot.yellow {
  background: #f59e0b;
}
.browser-dot.green {
  background: #401f86;
}
.browser-url-bar {
  flex: 1;
  background: #fff;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 12px;
  color: #374151;
  border: 1px solid #d1d5db;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.browser-content {
  position: relative;
  background: #fff;
  overflow: hidden;
}

#screenshot-container {
  width: 100%;
  max-height: 400px;
  overflow: auto;
  display: block;
  background: white;
}
#screenshot {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.analysis-meta {
  margin-top: 0;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.meta-chip {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  background: #F3F4F6;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
}
.meta-chip:first-child {
  min-width: 140px;
}
.meta-chip strong {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: #401f86;
}
.analysis-note {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  margin: 0 0 24px;
  line-height: 1.5;
}
.analysis-insight {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 24px;
  line-height: 1.5;
  text-align: center;
}
.analysis-insight strong {
  font-weight: 700;
  color: #401f86;
}

.analysis-list {
  list-style: none;
  margin-top: 0;
  display: grid;
  gap: 8px;
  position: relative;
  padding-left: 0;
}
.analysis-list::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}
.analysis-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #F8F8F8;
  border: 1px solid #E8E8E8;
}
.status-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #401f86;
  position: relative;
  background: #fff;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  background: #fff;
  z-index: 1;
}
.analysis-item.pending {
  opacity: 0.5;
}
.analysis-item.active {
  background: #EDEDFF;
  border: 1px solid #E8E8E8;
}
.analysis-item.active .status-icon {
  border-color: #401f86;
  background: #401f86;
}
.analysis-item.active .status-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.analysis-item.done .status-icon {
  background: #401f86;
  border-color: #401f86;
}
.analysis-item.done .status-icon::after {
  content: "✓";
  font-size: 14px;
  color: #fff;
  transform: none;
  width: auto;
  height: auto;
  background: transparent;
  position: static;
}
.analysis-item.done .analysis-text {
  color: #000000;
  font-weight: 600;
}
.analysis-item.done .issues-badge {
  display: inline-block;
}
.analysis-text {
  text-align: left;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  flex: 1;
}
.issues-badge {
  display: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #DC2626;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-left: auto;
}

#step7 h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.2;
}

/* Preview Mode Skip Button */
.preview-skip-btn {
  margin-top: 24px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #9810FA 0%, #6E11B0 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(152, 16, 250, 0.3);
}

.preview-skip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(152, 16, 250, 0.4);
}

.preview-skip-btn:active {
  transform: translateY(0);
}

.results-image {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
  display: block;
}

.results-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.revenue-uplift-card {
  background: #F5F4F9;
  border: 1px solid #D1CAE3;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.revenue-uplift-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
  line-height: normal;
  text-align: left;
}

.revenue-uplift-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  margin: 0 0 20px;
  line-height: 16px;
  text-align: left;
}

.highlight-metric {
  font-weight: 700;
  color: #401f86;
}

.results-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #101828;
  text-align: center;
  line-height: 42px;
  margin-bottom: 0px;
}

.results-title .title-icon {
  font-size: 20px;
  color: #00c950;
}

.results-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #101828;
  margin-bottom: 20px;
  line-height: 24px;
  text-align: center;
}

.step7-revenue-metric-table {
  width: 100%;
}

.step7-revenue-metric-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: linear-gradient(90deg, #9810FA 0%, #6E11B0 100%);
  border-radius: 8px 8px 0 0;
  margin: 0;
  height: 60px;
}

.step7-revenue-metric-header {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 28px;
  text-align: left;
}

.step7-revenue-metric-header:first-child {
  flex: 1;
}

.step7-revenue-metric-header:last-child {
  text-align: right;
}

.step7-revenue-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #E5E7EB;
  background: #FFFFFF;
  min-height: 61px;
}

.step7-revenue-metric-row:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
  min-height: 60px;
}

.step7-revenue-metric-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.step7-revenue-metric-dot {
  width: 8px;
  height: 8px;
  background: #AD46FF;
  border-radius: 50%;
  flex-shrink: 0;
}

.step7-revenue-metric-label-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step7-revenue-metric-label > span:not(.step7-revenue-metric-dot),
.step7-revenue-metric-label-content > span:first-child {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #101828;
  line-height: 24px;
}

.step7-revenue-metric-detail {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #747474;
  line-height: 8px;
}

.step7-revenue-metric-detail strong {
  font-weight: 700;
}

.step7-revenue-metric-value {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  line-height: 28px;
}

.step7-revenue-metric-value.step7-revenue-purple-value {
  color: #9810FA;
}

.step7-revenue-metric-value.step7-revenue-green-value {
  color: #00C950;
}

.increase-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}
.metric-box {
  text-align: center;
}
.metric-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
}
.metric-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  margin-top: 8px;
}
.issue-section {
  margin-bottom: 24px;
}

.issue-section:last-of-type {
  margin-bottom: 0;
}

.issue-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  margin-bottom: 16px;
  background: #FFFFFF;
}

.issue-section-header span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
}

.issue-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.issue-card {
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 16px 12px;
  position: relative;
}

.issue-card-header {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.issue-card-body {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.issue-card-content {
  flex: 1;
}

.issue-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
  line-height: 1.4;
}

.issue-card-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1;
}

.issue-card-badge.high {
  background: #FEE2E2;
  color: #DC2626;
}

.issue-card-badge.medium {
  background: #FEF3C7;
  color: #D97706;
}

.issue-card-badge.low {
  background: #DCFCE7;
  color: #059669;
}

.issue-card-uplift {
  text-align: right;
}

.issue-card-uplift-value {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 4px;
}

.issue-card-uplift-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #6B7280;
}

.issue-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.5;
}

.pxl-pipeline-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E5E7EB;
}

.pxl-pipeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 16px;
  padding: 20px 28px;
  text-align: center;
  background: #F9FAFB;
  border-radius: 8px;
}

.pxl-pipeline-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}

.pxl-pipeline-button:hover {
  background: #F9FAFB;
}

.pxl-pipeline-button svg {
  width: 24px;
  height: 24px;
  color: #6B7280;
}
.competitor-item {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.8);
}

.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(64, 31, 134, 0.4) 50%,
    transparent 100%
  );
  transform: translateX(-100%);
  animation: scan 3s linear infinite;
  z-index: 1;
  box-shadow: 0 0 20px rgba(64, 31, 134, 0.3);
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 40px rgba(64, 31, 134, 0.6);
  }
  100% {
    transform: translateX(100%);
    opacity: 0.8;
  }
}
/* Performance Scorecards - Step 7 */
.step7-scorecard-container {
  background: #F5F4F9;
  border: 1px solid #D1CAE3;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step7-scorecard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
}

.step7-scorecard-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  margin: 0;
  line-height: 32px;
}

.step7-scorecard-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6A6A6A;
  line-height: 32px;
}

.step7-scorecard-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step7-scorecard-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.step7-scorecard-item {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #E9D7FE;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 162px;
  text-align: center;
}

.step7-scorecard-value {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  margin: 0;
}

/* Conditional colors based on score */
.step7-scorecard-value-green {
  color: #17d937;
}

.step7-scorecard-value-yellow {
  color: #d9c217;
}

.step7-scorecard-value-red {
  color: #d91717;
}

.step7-scorecard-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #4A5565;
  line-height: 20px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  margin: 0;
}

/* Step 6 Form Section */
.step6-form-section {
  width: 100%;
  max-width: 900px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media (max-width: 640px) {
  .step6-form-section {
    margin-top: 24px;
  }
}

/* Lead Capture Form - Step 7 */
.step7-lead-form-container {
  background: #F5F4F9;
  border: 1px solid #D1CAE3;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step7-lead-form-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  line-height: 28px;
  margin: 0;
  text-align: center;
  text-transform: capitalize;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.step7-lead-form-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step7-lead-form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step7-lead-form-label {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000000;
  line-height: normal;
}

.step7-lead-form-input {
  width: 100%;
  height: 49px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  line-height: normal;
}

.step7-lead-form-input::placeholder {
  color: #7F7F7F;
}

.step7-lead-form-input:focus {
  outline: none;
  border-color: #9810FA;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
}

.phone-number-input {
  flex: 1;
}

/* Country Selector */
.country-selector {
  position: relative;
  flex-shrink: 0;
}

.country-selected {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 49px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  padding: 0 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 100px;
}

.country-selected:hover {
  border-color: #9810FA;
}

.country-selected .country-flag {
  font-size: 20px;
  line-height: 1;
}

.country-selected .country-code {
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.country-selected svg {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.country-selector.open .country-selected svg {
  transform: rotate(180deg);
}

.country-selector.open .country-selected {
  border-color: #9810FA;
}

/* Country Dropdown */
.country-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 280px;
  max-height: 320px;
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.country-search-wrapper {
  padding: 12px;
  border-bottom: 1px solid #E5E5E5;
}

.country-search {
  width: 100%;
  height: 36px;
  background: #F5F5F5;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 8px 12px;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  color: #000000;
}

.country-search:focus {
  outline: none;
  border-color: #9810FA;
  background: #FFFFFF;
}

.country-list {
  overflow-y: auto;
  max-height: 260px;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.country-option:hover {
  background: #F5F4F9;
}

.country-option.hidden {
  display: none;
}

.country-option .country-flag {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

.country-option .country-name {
  flex: 1;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.country-option .country-code {
  font-family: 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666666;
}

.step7-lead-form-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: normal;
  margin: 0;
}

.step7-submit-button {
  background: #401f86;
  font-family: 'Arial', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 24px;
  border-radius: 12px;
  min-height: 49px;
}

.step7-submit-button:hover {
  background: #321764;
}

/* Critical Issues Section - Step 7 */
.step7-issues-container {
  background: #F5F4F9;
  border: 1px solid #D1CAE3;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step7-issues-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.step7-issues-title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #101828;
  margin: 0;
  line-height: 32px;
}

.step7-issues-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #364153;
  margin: 0;
  line-height: 20px;
}

.step7-issues-highlight {
  font-weight: 700;
}

.step7-issue-section {
  display: none; /* Hidden by default - show summary table instead */
  flex-direction: column;
  gap: 16px;
}

.step7-issue-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid;
}

.step7-issue-header-high {
  border-color: #FF6467;
}

.step7-issue-header-medium {
  border-color: #FDC700;
}

.step7-issue-header-low {
  border-color: #05DF72;
}

.step7-issue-section-header span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1E2939;
  line-height: 28px;
}

/* Issue Cards Container with Stacking Effect */
.step7-issue-cards {
  position: relative;
  min-height: 250px;
}

/* Issue Card - Base Styles */
.step7-issue-card {
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid;
  transition: all 0.3s ease;
}

/* High Priority Cards */
.step7-issue-card.step7-card-high {
  background: #FFEDED;
  border-color: #FF6467;
}

/* Medium Priority Cards */
.step7-issue-card.step7-card-medium {
  background: #FFF4E5;
  border-color: #EFB56A;
}

/* Low Priority Cards */
.step7-issue-card.step7-card-low {
  background: #E5FFF5;
  border-color: #1CC286;
}

/* Stacking Effect - Card Positions and Sizes */
/* Stacked uplift badge - DEPRECATED (now using header uplift) */
.step7-issue-card-stacked-uplift {
  display: none !important; /* Always hidden, using header uplift instead */
}

/* Card 1: Front card - Full size, no blur */
.step7-issue-card:nth-child(1) {
  top: 60px;
  z-index: 3;
  width: 100%;
  filter: none;
}

/* Hide stacked uplift on front card */
.step7-issue-card:nth-child(1) .step7-issue-card-stacked-uplift {
  display: none;
}

/* Card 2: Middle card - 95% size, with blur */
.step7-issue-card:nth-child(2) {
  top: 30px;
  z-index: 2;
  width: 95%;
  padding: 12px 16px; /* Padding reducido para que se asome el header */
}

/* Card 3: Back card - 90% size, with more blur */
.step7-issue-card:nth-child(3) {
  top: 0;
  z-index: 1;
  width: 90%;
  padding: 12px 16px; /* Padding reducido para que se asome el header */
}

/* Card Header - Container for title and uplift */
.step7-issue-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
}

/* Header Text (blurred) */
.step7-issue-card-header-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #737373;
  line-height: 28px;
  flex: 1;
}

/* Header Uplift (NOT blurred) - visible in ALL cards */
.step7-issue-card-header-uplift {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #00AC6E;
  line-height: 1;
  white-space: nowrap;
  filter: none !important; /* Never blur the uplift */
}

/* Card Body */
.step7-issue-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.step7-issue-card-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap; /* Keep title and badge on same line */
  min-width: 0; /* Allow flex children to shrink below content size */
  overflow: hidden; /* Hide overflow from parent */
}

.step7-issue-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  line-height: 28px;
  /* Remove flex:1 so text takes only needed space */
  flex-shrink: 1; /* Allow shrinking if space is tight */
  min-width: 0; /* Allow shrinking below content size */
  overflow: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Show ... for long text */
  white-space: nowrap; /* Prevent wrapping */
  max-width: 100%; /* Ensure it doesn't overflow container */
}

/* Priority Badges */
.step7-issue-card-badge {
  display: inline-block;
  padding: 6px 8px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  text-transform: capitalize;
  flex-shrink: 0; /* Never shrink the badge */
  white-space: nowrap; /* Keep badge text on one line */
}

.step7-issue-card-badge.step7-badge-high {
  background: #FB2B3A;
}

.step7-issue-card-badge.step7-badge-medium {
  background: #FBAB45;
}

.step7-issue-card-badge.step7-badge-low {
  background: #0CA826;
}

/* Uplift Section */
.step7-issue-card-uplift {
  display: none; /* Hidden - now using header uplift instead */
  flex-direction: column;
  align-items: flex-end;
}

.step7-issue-card-uplift-value {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #00AC6E;
  line-height: 24px;
}

.step7-issue-card-uplift-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #000000;
  line-height: 28px;
}

/* Card Description */
.step7-issue-card-description {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #737373;
  line-height: 20px;
  letter-spacing: 0.5px;
}

/* ============================================ */
/* Blur Effect for ALL Cards - Only Uplift Clear */
/* ============================================ */

/* Apply blur to ALL text elements in ALL cards */
.step7-card-blur-content .step7-blurred-text {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* Keep ONLY uplift values crystal clear (no blur) */
.step7-card-blur-content .step7-issue-card-uplift,
.step7-card-blur-content .step7-issue-card-uplift-value,
.step7-card-blur-content .step7-issue-card-uplift-label,
.step7-card-blur-content .step7-issue-card-stacked-uplift,
.step7-card-blur-content .step7-issue-card-header-uplift {
  filter: none !important;
  user-select: text;
  pointer-events: auto;
}

/* Optional: Add subtle overlay to all cards */
/* REMOVED: position: relative breaks the stacking effect */
/* Cards already have position: absolute for stacking */

.step7-card-blur-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  pointer-events: none;
  z-index: 0;
}

/* Ensure uplift and content are above overlay */
.step7-card-blur-content .step7-issue-card-body,
.step7-card-blur-content .step7-issue-card-header,
.step7-card-blur-content .step7-issue-card-description,
.step7-card-blur-content .step7-issue-card-uplift,
.step7-card-blur-content .step7-issue-card-stacked-uplift {
  position: relative;
  z-index: 1;
}

/* Step 7 Summary Table Section */
.step7-summary-card {
  display: block; /* Visible by default instead of issues section */
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step7-summary-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
}

.step7-summary-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.step7-summary-header-text {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  line-height: 28px;
}

.step7-summary-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step7-summary-row {
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(64, 31, 134, 0.1);
  user-select: none;
  transition: all 0.3s ease;
}

.step7-summary-row:last-of-type {
  margin-bottom: 0;
}

.step7-summary-label {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.step7-summary-label svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.step7-summary-label span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  line-height: 24px;
}

.step7-summary-label strong {
  font-weight: 600;
  color: #101828;
}

/* Row-specific styles with border-left and hover effects */
.step7-summary-row-high {
  border-left: 4px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.step7-summary-row-high:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.1);
}

.step7-summary-row-medium {
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}

.step7-summary-row-medium:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.1);
}

.step7-summary-row-low {
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.05);
}

.step7-summary-row-low:hover {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}

.step7-summary-footer {
  background: linear-gradient(135deg, rgba(152, 16, 250, 0.08) 0%, rgba(110, 17, 176, 0.08) 100%);
  border: 1px solid #E9D5FF;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
}

.step7-summary-footer-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  color: #6B21A8;
  line-height: 22px;
  margin: 0;
}

/* PXL Pipeline Section */
.step7-pxl-pipeline-text-container {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #C27AFF;
  border-radius: 16px;
  padding: 20px 28px 20px 24px;
  margin-top: 8px;
}

.step7-pxl-pipeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #8200DB;
  line-height: 29.25px;
  margin: 0;
}

.step7-pxl-pipeline-button {
  width: 100%;
  background: #210B50;
  border: none;
  border-radius: 12px;
  padding: 8px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.2s;
  line-height: 29.25px;
}

.step7-pxl-pipeline-button:hover {
  background: #160731;
}

.step7-pxl-pipeline-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ================= CALENDLY STEP STYLES ================= */

/* Header Section */
.calendly-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.calendly-title-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 600px;
  text-align: center;
}

.calendly-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  color: #000000;
  margin: 0;
  text-transform: capitalize;
}

.calendly-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px; /* Changed from 42px */
  color: #000000;
  margin: 0;
}

.calendly-highlight {
  color: #401f86;
  font-weight: 700;
}

.calendly-description {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
  margin: 0;
  max-width: 483px;
}

/* Highlights Section */
.calendly-highlights {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
}

.calendly-highlights-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #000000;
  text-align: center;
  max-width: 402px;
  margin: 0;
  text-transform: capitalize;
}

.calendly-urgency-badge {
  background: #e9dfff;
  border-radius: 40px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px; /* Changed from 42px */
  color: #000000;
  text-transform: capitalize;
}

.calendly-uplift-boxes {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 1000px; /* Increased from 800px for wider boxes in desktop */
}

.calendly-uplift-box {
  flex: 1;
  background: #f6f6f6;
  border: 1px solid #9f33ff;
  border-radius: 8px;
  padding: 11px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.calendly-uplift-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calendly-uplift-label > span:first-child {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #101828;
}

.calendly-uplift-detail {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 8px;
  color: #747474;
}

.calendly-uplift-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 28px;
  color: #00c950;
}

.calendly-potential-question {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 20px;
  color: #000000;
  text-align: center;
  max-width: 352px;
  margin: 0;
  text-transform: capitalize;
}

/* Timer Section */
.calendly-timer-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-bottom: 56px;
}

.calendly-alert-header {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #401f86;
  text-transform: capitalize;
}

.calendly-timer-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #000000;
  text-align: center;
  margin: 0;
  text-transform: capitalize;
}

.calendly-countdown {
  display: flex;
  gap: 22px;
  align-items: center;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
}

.countdown-circle {
  width: 82px;
  height: 82px;
  border: 1px solid #d5c8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(11.3px);
}

.countdown-number {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  color: #210b50;
}

.countdown-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 19px;
  color: #210b50;
  text-transform: uppercase;
}

.countdown-separator {
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 7px;
}

.separator-dot {
  width: 7px;
  height: 7px;
  background: #9f33ff;
  border-radius: 50%;
}

.calendly-timer-description {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
  text-align: center;
  max-width: 596px;
  margin: 0;
  text-transform: capitalize;
}

/* Benefits Section */
.calendly-benefits-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}

.calendly-benefits-title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: #000000;
  text-align: center;
  margin: 0;
  text-transform: capitalize;
}

.calendly-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.calendly-benefit-item {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #000000;
  text-transform: capitalize;
  white-space: nowrap; /* Prevent text wrapping to keep benefits on single line */
}

.calendly-benefit-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0; /* Prevent icon from shrinking */
}

/* Calendly Widget Container */
.calendly-widget-container {
  height: 800px;
  border-radius: 12px;
  box-shadow: 0px 4px 28px 0px rgba(0, 0, 0, 0.1);
  margin: 0 auto 56px;
  overflow: hidden;
}

/* Calendly Alternative Contact */
.calendly-alternative-contact {
  margin-bottom: 40px;
}

/* Brands Section */
.calendly-brands-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.calendly-brands-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 42px;
  color: #000000;
  text-align: center;
  margin: 0;
}

/* Step 8 CTA Container */
.step8-cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  width: 100%;
}

.step8-cta-container .cta-button {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: auto;
  min-width: 320px;
  padding: 18px 32px;
  animation: none;
  opacity: 1;
  transform: none;
  margin-top: 0;
}

@media (max-width: 768px) {
  .step8-cta-container .cta-button {
    min-width: 280px;
    padding: 16px 24px;
    font-size: 14px;
  }
}

/* Old calendly container (kept for compatibility) */
.calendly-container {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.kodexo-logo {
  display: block;
  margin: 20px auto;
  max-width: 200px;
  height: auto;
}

.table-wrapper {
  overflow-x: auto;
  margin: 20px -10px;
  padding: 0 10px;
}
.calculation-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  font-size: 15px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(64, 31, 134, 0.12);
  border: 2px solid rgba(64, 31, 134, 0.1);
}
.calculation-table th,
.calculation-table td {
  padding: 20px 28px;
  text-align: left;
  position: relative;
  border: none;
}
.calculation-table th {
  background: linear-gradient(135deg, var(--brand) 0%, #5b21b6 100%);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
}

.calculation-table th::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.3) 100%);
}
.calculation-table th:first-child {
  border-radius: 16px 0 0 0;
}
.calculation-table th:last-child {
  border-radius: 0 16px 0 0;
  text-align: right;
}
.calculation-table td {
  color: #2d3748;
  font-weight: 500;
  background: #fff;
  border-bottom: 1px solid rgba(64, 31, 134, 0.08);
  transition: all 0.3s ease;
}

.calculation-table tr:last-child td {
  border-bottom: none;
}
.calculation-table tbody tr {
  transition: all 0.3s ease;
}

.calculation-table tbody tr:hover {
  background: rgba(64, 31, 134, 0.03);
}

.calculation-table tbody tr:hover td {
  background: rgba(64, 31, 134, 0.03);
}
.calculation-table tbody tr:nth-child(even) {
  background: rgba(64, 31, 134, 0.02);
}

.calculation-table tbody tr:nth-child(even):hover {
  background: rgba(64, 31, 134, 0.05);
}
.calculation-table td:first-child {
  color: #1a202c;
  font-weight: 600;
  font-size: 15px;
  position: relative;
}

.calculation-table td:first-child::before {
  content: '▶';
  color: var(--brand);
  margin-right: 8px;
  font-size: 12px;
  opacity: 0.6;
}

.calculation-table td:last-child {
  text-align: right;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand);
  font-family: 'Inter', monospace;
  position: relative;
}
.increase-value {
  color: #10b981 !important;
  font-weight: 800 !important;
  font-size: 19px !important;
  position: relative;
  text-shadow: 0 1px 3px rgba(16, 185, 129, 0.3);
}
.increase-value::before {
  content: "↗";
  margin-right: 6px;
  font-size: 14px;
}
/* Warning row styling */
.calculation-table tr.warning-row {
  position: relative;
}

.calculation-table tr.warning-row td {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
  border-bottom: 2px solid rgba(239, 68, 68, 0.3);
  font-weight: 600;
}

.calculation-table tr.warning-row td:first-child {
  border-left: 4px solid #ef4444;
  color: #dc2626;
}

.calculation-table tr.warning-row td:first-child::before {
  content: '⚠️';
  color: #ef4444;
  margin-right: 8px;
}

.calculation-table tr.warning-row td:last-child {
  color: #dc2626;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 1px 3px rgba(220, 38, 38, 0.3);
  font-weight: 800;
}
.calculation-table tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}
.calculation-table tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}
/* Mobile responsive */
@media (max-width: 640px) {
  .calculation-table {
    font-size: 13px;
  }
  .calculation-table th,
  .calculation-table td {
    padding: 12px 14px;
  }
  .calculation-table td:first-child {
    padding-left: 14px;
    font-size: 12px;
  }
  .calculation-table td:last-child {
    padding-right: 14px;
    font-size: 14px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ai-text {
  color: black;
}

#step7-screenshot {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.slider-container {
  position: relative;
  margin-top: 20px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: calc(50% + 30px);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-arrow:hover {
  opacity: 0.6;
}

.slider-arrow svg {
  width: 32px;
  height: 32px;
}

.slider-arrow-left {
  left: -45px;
}

.slider-arrow-right {
  right: -45px;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}

.cards {
  display: flex;
  transition: transform 0.5s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 25px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #000;
  box-shadow: 0px 0px 10px 0px #401f86;
}

.card {
  flex: 0 0 100%;
  padding: 16px 20px;
  background: #1e293b;
  border-radius: 12px;
  border: 3px solid #401f86;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.high {
  background-color: rgba(255, 59, 59, 0.1);
  color: #ff3b3b;
  border: 1px solid rgba(255, 59, 59, 0.4);
}

.badge.medium {
  background-color: rgba(250, 204, 21, 0.1);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.4);
}

.uplift {
  font-size: 18px;
  font-weight: 700;
  color: #39FF14;
  text-align: right;
}

.description {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.4;
}

.description strong {
  color: #a78bfa;
  font-weight: 700;
}

@media (max-width: 640px) {
  .funnel-logo img {
    width: 150px;
    height: 28px;
  }
  
  .progress-helper-text {
    font-size: 12px;
    line-height: 12px;
    order: 0 !important; /* Mobile: arriba de todo */
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
  
  .progress-header {
    font-size: 13px;
    gap: 0;
  }
  
  .progress-header > span:first-child {
    order: 1;
  }
  
  .progress-header > span:last-child {
    order: 2;
  }
  
  .form-card {
    padding: 24px 0px;
  }
  h1 {
    font-size: 26px;
    line-height: 31.2px;
  }
  .text-green {
    font-size: 30px;
    line-height: 36px;
  }
  h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .description {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .challenge-grid {
    grid-template-columns: 1fr;
  }
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .score-grid {
    grid-template-columns: 1fr;
  }
  .report-slider {
    height: 150px;
    padding: 20px;
  }
  .slide-title {
    font-size: 18px;
  }
  .slide-desc {
    font-size: 12px;
  }
  .form-group {
    margin-bottom: 16px;
  }
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="tel"],
  select {
    padding: 12px 14px;
    font-size: 14px;
  }
  .brand-tagline {
    font-size: 11px;
  }
  
  .main-description {
    font-size: 16px;
    line-height: 25.6px;
  }
  
  .urgency-content {
    font-size: 13px;
    align-items: center;
    gap: 12px;
  }
  
  .urgency-content span {
    text-align: center;
    white-space: normal;
  }
  
  .live-indicator {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  
  .SliderText h1 {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  
  .card .description {
    font-size: 14px;
    line-height: 19.6px;
  }
  
  .cta-button {
    margin-top: 16px;
    padding: 14px 20px;
    font-size: 14px;
  }
  .back-button {
    padding: 8px 12px;
    font-size: 13px;
  }
  .analysis-title {
    font-size: 24px;
    margin-bottom: 8px;
    line-height: 1;
  }
  .analyzing-url {
    font-size: 16px;
    margin-bottom: 16px;
    line-height: 1;
  }
  .gt-browser-window {
    max-width: 100%;
    margin-bottom: 12px;
    border-radius: 8px;
  }
  .browser-content {
    max-height: 200px;
  }
  #screenshot-container {
    max-height: 200px;
  }
  #screenshot {
    max-width: 100%;
  }
  .browser-url-bar {
    font-size: 10px;
    padding: 4px 8px;
  }
  .browser-header {
    padding: 6px 10px;
  }
  .browser-dot {
    width: 10px;
    height: 10px;
  }
  .analysis-meta {
    gap: 12px;
    margin-bottom: 6px;
  }
  .meta-chip {
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 16px;
  }
  .analysis-note {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .analysis-insight {
    font-size: 14px;
    margin: 24px 0 28px;
    line-height: 1.3;
  }
  .analysis-list {
    gap: 8px;
  }
  .analysis-list::before {
    left: 20px;
    top: 28px;
    bottom: 28px;
  }
  .analysis-item {
    padding: 16px;
    gap: 12px;
  }
  .status-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }
  .analysis-item.active .status-icon::after {
    width: 5px;
    height: 5px;
  }
  .analysis-item.done .status-icon::after {
    font-size: 11px;
  }
  .analysis-text {
    font-size: 12px;
    line-height: 1.2;
  }
  .issues-badge {
    font-size: 12px;
    white-space: nowrap;
  }
  .container {
    padding: 0px;
  }
  .shape-1,
  .shape-2,
  .shape-3 {
    display: none;
  }
  .neon-line-1,
  .neon-line-2 {
    display: none;
  }
  .tooltip-text {
    width: 150px;
    font-size: 12px;
    left: 20px;
    top: -20px;
  }
  #step7 h2 {
    font-size: 20px;
    line-height: 26px;
  }

  #sendKitButton {
    margin-top: 24px;
  }

  .opt-in-section {
    margin-top: 24px;
  }
  
  .results-image {
    margin-bottom: 16px;
    border-radius: 6px;
  }
  
  .results-card {
    padding: 20px 16px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
  
  .revenue-uplift-card {
    padding: 16px;
    border-radius: 12px;
  }
  
  .revenue-uplift-title {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
  }
  
  .revenue-uplift-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 16px;
  }
  
  .step7-revenue-metric-header-row {
    padding: 16px 12px;
    border-radius: 8px 8px 0 0;
    height: 60px;
  }
  
  .step7-revenue-metric-header {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
  }
  
  .step7-revenue-metric-row {
    padding: 18px 12px;
    min-height: 61px;
  }
  
  .step7-revenue-metric-row:last-child {
    min-height: 60px;
    border-radius: 0 0 8px 8px;
  }
  
  .step7-revenue-metric-dot {
    width: 8px;
    height: 8px;
  }
  
  .step7-revenue-metric-label {
    gap: 12px;
  }
  
  .step7-revenue-metric-label > span:not(.step7-revenue-metric-dot),
  .step7-revenue-metric-label-content > span:first-child {
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .step7-revenue-metric-detail {
    font-size: 10px;
    font-weight: 500;
    line-height: 8px;
  }
  
  .step7-revenue-metric-value {
    font-size: 14px;
    font-weight: 600;
    line-height: 28px;
  }
  
  .increase-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }
  
  /* Critical Issues Section - Mobile */
  .step7-issues-container {
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
  }

  .step7-issues-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 32px;
  }

  .step7-issues-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }

  .step7-issue-section {
    gap: 12px;
    margin-bottom: 20px;
  }
  
  /* Extra spacing for middle section */
  .step7-issue-section:nth-child(2) {
    margin-bottom: 0px !important;
  }
  
  /* Extra spacing for middle section */
  .step7-issue-section:nth-child(3) {
    margin-bottom: 0px !important;
  }

  /* Extra spacing for middle section */
  .step7-issue-section:nth-child(4) {
    margin-bottom: 0px !important;
  }

  .step7-issue-section-header {
    padding: 16px 12px;
    gap: 12px;
    border-radius: 12px;
  }

  .step7-issue-section-header span {
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
  }
  
  .step7-issue-section-header svg {
    width: 12px;
    height: 12px;
  }
  
  .step7-issue-cards {
    min-height: 260px; /* Increased to accommodate taller cards */
    margin-bottom: 0px;
  }
  
  .step7-issue-card {
    padding: 16px 12px;
    gap: 16px;
    border-radius: 8px;
    min-height: 200px; /* Ensure enough height for content */
    height: auto; /* Allow card to grow with content */
  }
  
  /* Mobile: Maintain stacking with size reduction */
  .step7-issue-card:nth-child(1) {
    top: 50px;
    width: 100%;
  }
  
  .step7-issue-card:nth-child(2) {
    top: 25px;
    width: 95%;
  }
  
  .step7-issue-card:nth-child(3) {
    width: 90%;
  }
  
  .step7-issue-card-header {
    font-size: 12px;
    line-height: 24px;
  }
  
  .step7-issue-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px; /* Increased for better readability */
    white-space: normal; /* Allow text wrapping */
    max-width: fit-content;
    word-wrap: break-word;
  }
  
  .step7-issue-card-badge {
    padding: 6px 8px;
    font-size: 12px;
    line-height: 9px;
  }
  
  .step7-issue-card-uplift-value {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
  }
  
  .step7-issue-card-uplift-label {
    font-size: 10px;
  }
  
  .step7-issue-card-description {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Step 7 Summary Table - Mobile */
  .step7-summary-card {
    padding: 16px;
    margin-top: 20px;
    border-radius: 12px;
  }

  .step7-summary-header {
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .step7-summary-header svg {
    width: 18px;
    height: 18px;
  }

  .step7-summary-header-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }

  .step7-summary-table {
    gap: 12px;
  }

  .step7-summary-row {
    padding: 8px 12px;
  }

  .step7-summary-label {
    gap: 10px;
  }

  .step7-summary-label svg {
    width: 14px;
    height: 14px;
  }

  .step7-summary-label span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }

  .step7-pxl-pipeline-text-container {
    padding: 16px;
    border-radius: 12px;
    margin-top: 20px;
  }

  .step7-pxl-pipeline-text {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    line-height: 24px;
    text-align: center;
  }

  .step7-pxl-pipeline-button {
    padding: 16px 14.5px;
    font-size: 11px;
    font-weight: 600;
    line-height: 8px;
    border-radius: 12px;
  }
  
  /* Country Selector Mobile */
  .phone-input-wrapper {
    flex-direction: row;
    gap: 6px;
  }
  
  .country-selected {
    min-width: 85px;
    padding: 0 8px;
    gap: 6px;
  }
  
  .country-selected .country-flag {
    font-size: 18px;
  }
  
  .country-selected .country-code {
    font-size: 14px;
  }
  
  .country-dropdown {
    width: 260px;
    max-height: 280px;
  }
  
  .country-list {
    max-height: 220px;
  }

  .step7-pxl-pipeline-button svg {
    width: 16px;
    height: 16px;
  }

  .issue-section {
    margin-bottom: 20px;
  }
  
  .issue-section-header {
    padding: 16px 12px;
    margin-bottom: 12px;
  }
  
  .issue-section-header span {
    font-size: 14px;
  }
  
  .issue-cards {
    gap: 12px;
  }
  
  .issue-card {
    padding: 12px;
  }
  
  .issue-card-header {
    font-size: 11px;
    margin-bottom: 12px;
  }
  
  .issue-card-title {
    font-size: 13px;
  }
  
  .issue-card-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
  
  .issue-card-uplift-value {
    font-size: 13px;
  }
  
  .issue-card-uplift-label {
    font-size: 9px;
  }
  
  .issue-card-description {
    font-size: 12px;
  }
  
  .pxl-pipeline-section {
    margin-top: 24px;
    padding-top: 20px;
  }
  
  .pxl-pipeline-text {
    font-size: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
  }
  
  .pxl-pipeline-button {
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .pxl-pipeline-button svg {
    width: 20px;
    height: 20px;
  }
  
  /* Lead Capture Form - Mobile */
  .step7-lead-form-container {
    padding: 20px;
    gap: 20px;
  }
  
  .step7-lead-form-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
  }
  
  .step7-lead-form-content {
    gap: 16px;
  }
  
  .step7-lead-form-group {
    gap: 8px;
  }
  
  .step7-lead-form-label {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
  }
  
  .step7-lead-form-input {
    height: 49px;
    padding: 17.5px 16px;
    font-size: 14px;
  }
  
  .step7-lead-form-disclaimer {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  
  /* Performance Scorecards - Mobile */
  .step7-scorecard-container {
    padding: 20px;
    gap: 20px;
  }
  
  .step7-scorecard-header {
    font-size: 16px;
    font-weight: 600;
    line-height: 32px;
  }
  
  .step7-scorecard-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
  }
  
  .step7-scorecard-subtitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
  }
  
  .step7-scorecard-grid {
    gap: 20px;
  }
  
  .step7-scorecard-row {
    gap: 12px;
  }
  
  .step7-scorecard-item {
    padding: 16px 12px;
    gap: 8px;
    height: 104px;
    border-radius: 12px;
  }
  
  .step7-scorecard-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
  }
  
  .step7-scorecard-label {
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    letter-spacing: 0.25px;
    text-align: center;
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  .footer-text {
    font-size: 14px;
    line-height: 16px;
    margin: 24px 0;
  }
  
  .footer-text .ai-text {
    display: block;
  }
  
  .mobile-br {
    display: inline;
  }
  
  label {
    font-size: 12px;
  }
  .challenge-card {
    font-size: 15px;
    padding: 24px;
    height: 64px;
  }
  .challenge-grid {
    gap: 12px;
  }
  
  /* Step 3 Mobile */
  .step3-header {
    margin-bottom: 16px;
  }
  
  .step3-header h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 12px;
  }
  
  .step3-subtitle {
    font-size: 12px;
    line-height: 21px;
  }
  
  .revenue-section {
    margin-bottom: 16px;
  }
  
  .revenue-label {
    margin-bottom: 12px;
  }
  
  .revenue-label .label-text {
    font-size: 12px;
  }
  
  .revenue-card {
    font-size: 15px;
    padding: 19.5px 16px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .revenue-grid {
    gap: 12px;
  }
  
  #step3 .cta-button {
    height: 44px;
    font-size: 15px;
    padding: 14px 24px;
  }
  
  .explanation-text {
    font-size: 12px;
    line-height: 20px;
    margin-top: 16px;
    margin-bottom: 0;
  }
  
  /* Step 4 Mobile */
  #step4 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  
  #step4 .form-group {
    margin-bottom: 16px;
  }
  
  #step4 .form-group label {
    font-size: 12px;
    margin-bottom: 12px;
    gap: 4px;
  }
  
  #step4 input {
    height: 44px;
    padding: 15px 16px;
    font-size: 14px;
  }
  
  #step4 input::placeholder {
    font-size: 14px;
  }
  
  #step4 .cta-button {
    height: 44px;
    font-size: 15px;
    padding: 14px 16px; /* Reduced from 24px to 16px */
    margin-top: 6px;
  }
  
  .step4-footer {
    font-size: 12px;
    line-height: 17px;
    margin-top: 28px;
  }
  
  /* Step 5 Mobile */
  #step5 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  
  .step5-subtitle {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 16px;
  }
  
  #step5 .form-group {
    margin-bottom: 16px;
  }
  
  #step5 .form-group label {
    font-size: 12px;
    margin-bottom: 12px;
  }
  
  .page-type-helper {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    font-size: 13px;
  }
  
  #step5 input[type="url"] {
    height: 44px;
    padding: 12px 16px;
    font-size: 14px;
  }
  
  #step5 select {
    min-height: 44px;
    height: auto;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
  }
  
  #step5 input[type="url"]::placeholder {
    font-size: 14px;
  }
  
  #step5 .cta-button {
    height: 44px;
    font-size: 15px;
    padding: 14px 24px;
    margin-top: 6px;
  }
  
  .step5-footer {
    font-size: 12px;
    line-height: 17px;
    margin-top: 28px;
  }

  .choices__inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 14px;
    min-height: 50px;
  }

  .choices__list--dropdown {
    border-radius: 12px;
    border: 1px solid #ccc;
    max-height: 220px;
    overflow-y: auto;
  }

  .choices__item--choice {
    white-space: normal !important;
    line-height: 1.4;
    padding: 10px;
    font-size: 13px;
  }
}
      /* reCAPTCHA Styling */
.recaptcha-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 78px;
}

.recaptcha-error {
  color: #ef4444;
  font-size: 13px;
  text-align: center;
  margin-top: 8px;
  display: none;
}

.recaptcha-wrapper {
  margin: 15px 0;
}

/* ================= BRANDS SECTION ================= */
.brands-section {
  margin-top: 80px;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brands-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 42px;
  color: #000000;
  padding: 0 20px;
  white-space: nowrap;
}

.brands-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  background: transparent;
}

.brands-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: marquee 35s linear infinite;
  width: fit-content;
  padding: 0;
}

.brand-logo {
  height: 35px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 1;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0) invert(0);
  flex-shrink: 0;
}

.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .brands-section {
    margin-top: 57px;
  }
  
  .brands-title {
    font-size: 16px;
  }
  
  .brands-track {
    gap: 10px;
    animation-duration: 25s;
    padding: 0;
  }
  
  .brand-logo {
    height: 26px;
    max-width: 140px;
  }
}

/* Step 7 Mobile Styles - Based on Figma Design 17694-18297 */
@media (max-width: 640px) {
  /* Extra spacing for middle issue section */
  .step7-issue-section:nth-child(2) {
    margin-bottom: 30px;
  }
  
  /* Issue Cards - Mobile Layout */
  .step7-issue-card {
    padding: 16px 12px;
    gap: 16px;
    min-height: 200px; /* Ensure enough height for content */
    height: auto; /* Allow card to grow with content */
  }
  
  /* Card Body - Horizontal layout with items aligned to bottom */
  .step7-issue-card-body {
    flex-direction: row; /* Keep horizontal on mobile like Figma */
    align-items: flex-end; /* Align items to bottom as per Figma */
    justify-content: space-between;
    gap: 16px;
    width: 100%;
  }
  
  /* Content Section - Badge stays on right of short desc on mobile */
  .step7-issue-card-content {
    flex-direction: row-reverse; /* Keep horizontal - badge on right */
    align-items: center;
    justify-content: start;
    gap: 8px;
    width: 100%;
    flex: 1; /* Take available space */
  }
  
  /* Title - Show on mobile as short description */
  .step7-issue-card-title {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    white-space: normal;
    max-width: fit-content;
    order: 2; /* Title goes after badge */
  }
  
  /* Badge - Mobile specs */
  .step7-issue-card-badge {
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    order: 1; /* Badge goes first */
  }
  
  /* Uplift Section - Position static, aligned with content */
  .step7-issue-card-uplift {
    position: static; /* Changed from absolute to static */
    gap: 8px;
    align-self: flex-end; /* Align to bottom of flex container */
  }
  
  .step7-issue-card-uplift-value {
    font-size: 20px;
    line-height: 20px;
  }
  
  .step7-issue-card-uplift-label {
    font-size: 10px;
    line-height: 7px;
  }
  
  /* Description - Show on mobile */
  .step7-issue-card-description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Card Header - Show on mobile but adjust layout */
  .step7-issue-card-header {
    display: flex; /* Show header on mobile */
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 12px; /* Smaller on mobile */
  }
  
  .step7-issue-card-header-text {
    font-size: 12px;
    line-height: 16px;
  }
  
  .step7-issue-card-header-uplift {
    font-size: 18px; /* Slightly smaller on mobile */
  }
  
  /* Blur Effect - Mobile adjustments */
  .step7-card-blur-content .step7-blurred-text {
    filter: blur(3px); /* Slightly less blur on mobile */
  }
  
  .step7-card-blur-content::before {
    background: rgba(255, 255, 255, 0.05); /* More subtle overlay on mobile */
  }
  
  /* Calendly Uplift Boxes - Stack vertically on mobile */
  .calendly-uplift-boxes {
    flex-direction: column; /* Stack boxes vertically on mobile */
    gap: 16px; /* Slightly larger gap for vertical stacking */
  }
  
  /* Calendly Benefit Items - Allow text wrapping on mobile */
  .calendly-benefit-item {
    white-space: normal; /* Allow text to wrap on mobile */
  }
}

/* ===================================
   STEP 9: THANK YOU PAGE STYLES
   =================================== */

.thank-you-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}

.thank-you-header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease-out;
}

.success-checkmark {
  margin: 0 auto 24px;
  width: 64px;
  height: 64px;
  animation: scaleIn 0.5s ease-out;
}

.thank-you-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.thank-you-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* About Collaboration Section - Step 10 */
.about-collaboration-section {
  background: linear-gradient(135deg, rgba(152, 16, 250, 0.05) 0%, rgba(152, 16, 250, 0.1) 100%);
  border: 1px solid rgba(152, 16, 250, 0.2);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.about-collaboration-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  text-align: left;
}

.about-collaboration-section .section-text {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-collaboration-section .section-text:last-child {
  margin-bottom: 0;
}

.about-collaboration-section .section-text strong {
  color: #9810FA;
  font-weight: 600;
}

.next-steps-section {
  background: linear-gradient(135deg, rgba(64, 31, 134, 0.03) 0%, rgba(64, 31, 134, 0.08) 100%);
  border: 1px solid rgba(64, 31, 134, 0.15);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.next-steps-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
  text-align: center;
}

.next-steps-description {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.video-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.what-happens-next {
  background: #ffffff;
  border: 1px solid rgba(64, 31, 134, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.what-happens-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  text-align: center;
}

.next-steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.next-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand) 0%, #5b21b6 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(64, 31, 134, 0.3);
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
}

.final-cta-section {
  text-align: center;
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

.ready-to-scale-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
  text-align: center;
}

.final-message {
  font-size: 18px;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.team-signature {
  font-size: 16px;
  color: var(--brand);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
}

.purplefire-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--brand) 0%, #5b21b6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(64, 31, 134, 0.3);
  margin-top: 8px;
}

.purplefire-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 31, 134, 0.4);
}

.purplefire-link:active {
  transform: translateY(0);
}

.purplefire-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.purplefire-link:hover svg {
  transform: translateX(2px) translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile Responsive Styles for Step 9 */
@media (max-width: 768px) {
  .thank-you-title {
    font-size: 24px;
  }

  .thank-you-subtitle {
    font-size: 16px;
  }

  .next-steps-section {
    padding: 24px 16px;
  }

  .next-steps-title {
    font-size: 20px;
  }

  .next-steps-description {
    font-size: 14px;
  }

  .what-happens-next {
    padding: 24px 16px;
  }

  .what-happens-title {
    font-size: 20px;
  }

  .next-step-item {
    gap: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-content h4 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 14px;
  }

  .about-collaboration-section {
    padding: 20px;
    margin-bottom: 24px;
  }

  .about-collaboration-section .section-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .about-collaboration-section .section-text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .ready-to-scale-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .final-message {
    font-size: 16px;
  }

  .team-signature {
    font-size: 14px;
  }

  .purplefire-link {
    font-size: 15px;
    padding: 11px 20px;
  }
}

@media (max-width: 480px) {
  .thank-you-container {
    padding: 0 8px;
  }

  .thank-you-header {
    margin-bottom: 32px;
  }

  .thank-you-title {
    font-size: 22px;
  }

  .thank-you-subtitle {
    font-size: 15px;
  }

  .success-checkmark {
    width: 56px;
    height: 56px;
  }

  .success-checkmark svg {
    width: 56px;
    height: 56px;
  }

  .next-steps-section,
  .what-happens-next {
    padding: 20px 12px;
    margin-bottom: 24px;
  }

  .next-steps-title,
  .what-happens-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .next-steps-list {
    gap: 20px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-content h4 {
    font-size: 15px;
  }

  .step-content p {
    font-size: 13px;
  }

  .about-collaboration-section {
    padding: 16px;
    margin-bottom: 20px;
  }

  .about-collaboration-section .section-title {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .about-collaboration-section .section-text {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .ready-to-scale-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .purplefire-link {
    font-size: 14px;
    padding: 10px 18px;
    gap: 6px;
  }

  .purplefire-link svg {
    width: 14px;
    height: 14px;
  }
}

/* ================= STEP 10: CONFIRMATION STYLES ================= */
.confirmation-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.confirmation-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #F8F7FC;
  border-radius: 12px;
  border: 1px solid #E6E3F0;
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E6E3F0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #101828;
  margin: 0 0 8px 0;
  line-height: 24px;
}

.step-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475467;
  margin: 0;
  line-height: 24px;
}

.step-content p strong {
  color: #9810FA;
  font-weight: 600;
}

/* Mobile responsive for confirmation steps */
@media (max-width: 640px) {
  .confirmation-steps {
    gap: 20px;
    margin-top: 20px;
  }

  .confirmation-step {
    gap: 12px;
    padding: 16px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-icon svg {
    width: 20px;
    height: 20px;
  }

  .step-content h4 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 6px;
  }

  .step-content p {
    font-size: 14px;
    line-height: 20px;
  }
}

