.predictor-hero {
  background: 
    radial-gradient(circle at top right, hsla(210,100%,98%,1), transparent 40%),
    linear-gradient(135deg, #f8fbff 0%, #eef4fb 100%);
  padding: 100px 0 60px;
  position: relative;
}

.predictor-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.predictor-copy h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--color-primary), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.predictor-copy p {
  max-width: 640px;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.predictor-hero-card,
.predictor-form-wrap,
.result-panel {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.predictor-form-wrap {
    padding: 48px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.predictor-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-field input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.result-panel {
    padding: 40px;
    position: sticky;
    top: 100px;
}

/* Probability Meter */
.meter-container {
    height: 12px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 24px 0;
    overflow: hidden;
    position: relative;
}

.probability-bar {
    height: 100%;
    width: 0%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prob-high { background: var(--color-success); }
.prob-medium { background: var(--color-warning); }
.prob-low { background: var(--color-error); }

.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 32px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-cta:hover {
    transform: scale(1.02);
    color: white;
}

@media (max-width: 992px) {
    .predictor-hero-grid, .predictor-shell {
        grid-template-columns: 1fr;
    }
    .predictor-form-wrap { padding: 32px; }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .predictor-heading h2 {
        font-size: 1.5rem;
    }
    
    .predictor-copy h1 {
        font-size: 2.2rem;
    }
    
    .result-panel {
        padding: 24px;
        position: relative; /* Remove stickiness for better mobile flow if desired, or keep */
        top: 0;
    }
}
