/* --- CTA enhancements --- */
.cta-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 32px 0;
}

.btn.cta{
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  border: none;
  padding: 20px 40px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  box-shadow: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.btn.cta::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn.cta:hover::before{
  left: 100%;
}

.btn.cta:hover{
  transform: translateY(-3px);
  box-shadow: none !important;
  filter: brightness(1.1);
}

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

.cta-note{
  color: #64748b;
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
}

.badges{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  color: #64748b;
  font-size: 13px;
}

.badges .badge-pill{
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 8px 16px;
  background: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: none !important;
}

.badges .badge-pill:hover{
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
  transform: translateY(-1px);
  box-shadow: none !important;
}

/* Sticky CTA for mobile */
.fixed-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid #e2e8f0;
  padding: 16px;
  display: none;
  z-index: 50;
  box-shadow: none !important;
}

.fixed-cta .inner{
  display: flex;
  justify-content: center;
}

@media (max-width: 640px){
  .fixed-cta{
    display: block;
  }
}

/* Info blocks with modern design */
.kpis{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.kpi{
  background: linear-gradient(135deg, #fff, #f8fafc);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kpi::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.kpi:hover{
  transform: translateY(-4px);
  box-shadow: none !important;
}

.kpi b{
  font-size: 28px;
  color: #3b82f6;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

/* Enhanced benefits panel */
.promo{
  border: 2px dashed #10b981;
  background: linear-gradient(135deg, #d1fae5, #f0fdf4);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: none !important;
}

.promo::before{
  content: "💡";
  position: absolute;
  top: -12px;
  left: 20px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: none !important;
}

/* Modern button styles */
.btn{
  appearance: none;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none !important;
  position: relative;
  overflow: hidden;
}

.btn::before{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before{
  left: 100%;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: none !important;
}

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

/* Card styles */
.card{
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px;
  box-shadow: none !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.card:hover{
  box-shadow: none !important;
  transform: translateY(-2px);
}

/* Typography enhancements */
h1, h2, h3{
  color: #1e293b;
  font-weight: 700;
  line-height: 1.2;
}

h1{
  font-size: 36px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2{
  font-size: 28px;
  color: #1e293b;
}

h3{
  font-size: 22px;
  color: #334155;
}

/* Enhanced form elements */
input[type="hidden"]{
  display: none;
}

/* Chart container enhancements */
canvas{
  border-radius: 12px;
  box-shadow: none !important;
  background: #fff;
  padding: 16px;
}

/* Loading states and animations */
.loading{
  position: relative;
  overflow: hidden;
}

.loading::after{
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: loading 1.5s infinite;
}

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

/* Enhanced focus states for accessibility */
.btn:focus,
.answer:focus{
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth scrolling */
html{
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar{
  width: 8px;
}

::-webkit-scrollbar-track{
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 64px 0 64px;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .nav {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 16px 24px;
  margin-bottom: 60px;
  border: none !important;
  box-shadow: none !important;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.brand-icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none !important;
  outline: none !important;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(-1px);
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.hero-cta {
  background: linear-gradient(135deg, #ffffff, #f1f5f9);
  color: #1e293b;
  font-size: 20px;
  padding: 24px 48px;
  border-radius: 50px;
  box-shadow: none !important;
  margin-bottom: 0;
}

.hero-cta:hover {
  transform: translateY(-5px);
  box-shadow: none !important;
}

.cta-icon {
  font-size: 24px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Section */
.content-section {
  margin-top: 60px;
}

.content-section .card {
  margin-bottom: 40px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.card-icon {
  font-size: 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
}

.feature-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1e293b;
}

.feature-card p {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

.testimonial {
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  border-radius: 16px;
  padding: 32px;
  margin-top: 24px;
}

.testimonial-content {
  font-size: 18px;
  color: #1e293b;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  font-size: 24px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 16px;
}

.author-title {
  color: #64748b;
  font-size: 14px;
}

/* Question Page Styles */
.question-header {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 20px 0;
  margin-bottom: 40px;
}

.question-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 24px;
  border: none !important;
}

.nav-back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-back:hover {
  color: white;
  transform: translateX(-2px);
}

.back-icon {
  font-size: 18px;
  font-weight: bold;
}

.question-progress {
  text-align: right;
}

.progress-text {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.progress-percentage {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.question-card {
  background: white;
  border-radius: 24px;
  box-shadow: none !important;
  overflow: hidden;
  margin-bottom: 40px;
}

.question-header-card {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.question-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}

.counter-icon {
  font-size: 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.counter-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.counter-numbers {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
}

.progress-container {
  flex: 1;
  max-width: 300px;
}

.progress-bar {
  height: 12px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
  box-shadow: none !important;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 999px;
  transition: width 0.5s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

.progress-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.question-content {
  padding: 40px 32px 32px;
  text-align: center;
}

.question-text {
  font-size: 24px;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.question-instruction {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 0;
}

.answer-form {
  padding: 0 32px 32px;
}

.answers-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.answer-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  width: 100%;
}

.answer-option:hover {
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.answer-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.answer-icon {
  font-size: 24px;
  background: #f1f5f9;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answer-text {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}

.answer-check {
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle {
  width: 24px;
  height: 24px;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.answer-option:hover .check-circle {
  border-color: #3b82f6;
  background: #3b82f6;
}

.answer-option:hover .check-circle::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.form-footer {
  text-align: center;
}

.disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 12px 20px;
  color: #92400e;
  font-size: 14px;
  font-weight: 500;
}

.disclaimer-icon {
  font-size: 16px;
}

/* Results Page Styles */
.results-header {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 20px 0;
  margin-bottom: 40px;
}

.results-header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 16px 24px;
  border: none !important;
}

.results-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
}

.results-summary-card {
  background: white;
  border-radius: 24px;
  box-shadow: none !important;
  overflow: hidden;
  margin-bottom: 40px;
}

.summary-header {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.summary-icon {
  font-size: 48px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.summary-content h1 {
  margin-bottom: 12px;
  font-size: 32px;
}

.summary-subtitle {
  color: #64748b;
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}

.results-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 32px;
}

.result-kpi {
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-kpi.primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.result-kpi.secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #059669);
}

.result-kpi:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
}

.kpi-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.kpi-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.kpi-value {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
}

.results-disclaimer {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 1px solid #f59e0b;
  border-radius: 16px;
  margin: 0 32px 32px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.results-disclaimer .disclaimer-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.disclaimer-content {
  color: #92400e;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.cta-section {
  margin-bottom: 40px;
}

.cta-card {
  background: white;
  border-radius: 24px;
  box-shadow: none !important;
  overflow: hidden;
}

.cta-header {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 32px;
  text-align: center;
}

.cta-header .cta-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.cta-header h2 {
  color: white;
  margin-bottom: 12px;
  font-size: 28px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

.cta-content {
  padding: 32px;
  text-align: center;
}

.expanded-cta {
  background: linear-gradient(135deg, #10b981, #059669);
  font-size: 20px;
  padding: 24px 48px;
  border-radius: 50px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-main {
  font-size: 18px;
  font-weight: 700;
}

.cta-price {
  font-size: 16px;
  opacity: 0.9;
}

.cta-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.cta-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.features-section {
  margin-bottom: 40px;
}

.features-card {
  background: white;
  border-radius: 24px;
  box-shadow: none !important;
  overflow: hidden;
}

.features-header {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 32px;
  text-align: center;
}

.features-icon {
  font-size: 48px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto 16px;
}

.features-header h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.features-subtitle {
  color: #64748b;
  font-size: 16px;
  margin: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 32px;
}

.feature-item {
  /* patched: remove white card background */
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
}


.feature-item::before { display: none !important; content: none !important; }

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
}

.feature-item .feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1e293b;
}

.feature-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.features-footer {
  padding: 0 32px 32px;
  text-align: center;
}

.features-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 20px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
}

.mobile-cta {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, #10b981, #059669);
}

/* Responsive design */
@media (max-width: 768px){
  .kpis{
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .card{
    padding: 24px;
    border-radius: 16px;
  }
  
  h1{
    font-size: 28px;
  }
  
  h2{
    font-size: 24px;
  }
  
  .badges{
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-features {
    gap: 20px;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .question-header-card {
    flex-direction: column;
    text-align: center;
  }
  
  .progress-container {
    max-width: 100%;
  }
  
  .question-text {
    font-size: 20px;
  }
  
  .summary-header {
    flex-direction: column;
    text-align: center;
  }
  
  .results-kpis {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cta-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px){
  .container{
    padding: 20px 16px;
  }
  
  .card{
    padding: 20px;
  }
  
  .btn.cta{
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .hero-section {
    padding: 60px 0 80px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .question-content {
    padding: 24px 20px 20px;
  }
  
  .answer-form {
    padding: 0 20px 20px;
  }
  
  .answer-option {
    padding: 16px 20px;
  }
  
  .answer-content {
    gap: 12px;
  }
  
  .answer-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .answer-text {
    font-size: 15px;
  }
  
  .summary-header {
    padding: 24px;
  }
  
  .results-kpis {
    padding: 24px;
  }
  
  .cta-header {
    padding: 24px;
  }
  
  .cta-content {
    padding: 24px;
  }
  
  .features-header {
    padding: 24px;
  }
  
  .features-grid {
    padding: 24px;
  }
  
  .features-footer {
    padding: 0 24px 24px;
  }
}
/* override for white back link on results */
.results-header .nav-back{color:#fff!important;}
